@webiny/app-scheduler 0.0.0-unstable.c27f4d8a31

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 (522) hide show
  1. package/Domain/Models/SchedulerItem/SchedulerItem.d.ts +13 -0
  2. package/Domain/Models/SchedulerItem/SchedulerItem.js +17 -0
  3. package/Domain/Models/SchedulerItem/SchedulerItem.js.map +1 -0
  4. package/Domain/Models/SchedulerItem/index.d.ts +1 -0
  5. package/Domain/Models/SchedulerItem/index.js +3 -0
  6. package/Domain/Models/SchedulerItem/index.js.map +1 -0
  7. package/Domain/Models/index.d.ts +1 -0
  8. package/Domain/Models/index.js +3 -0
  9. package/Domain/Models/index.js.map +1 -0
  10. package/Domain/Repositories/SchedulerItems/ISchedulerItemsRepository.d.ts +14 -0
  11. package/Domain/Repositories/SchedulerItems/ISchedulerItemsRepository.js +3 -0
  12. package/Domain/Repositories/SchedulerItems/ISchedulerItemsRepository.js.map +1 -0
  13. package/Domain/Repositories/SchedulerItems/SchedulerItemsRepository.d.ts +36 -0
  14. package/Domain/Repositories/SchedulerItems/SchedulerItemsRepository.js +128 -0
  15. package/Domain/Repositories/SchedulerItems/SchedulerItemsRepository.js.map +1 -0
  16. package/Domain/Repositories/SchedulerItems/SchedulerItemsRepositoryFactory.d.ts +19 -0
  17. package/Domain/Repositories/SchedulerItems/SchedulerItemsRepositoryFactory.js +17 -0
  18. package/Domain/Repositories/SchedulerItems/SchedulerItemsRepositoryFactory.js.map +1 -0
  19. package/Domain/Repositories/SchedulerItems/SchedulerItemsRepositoryWithLoading.d.ts +17 -0
  20. package/Domain/Repositories/SchedulerItems/SchedulerItemsRepositoryWithLoading.js +38 -0
  21. package/Domain/Repositories/SchedulerItems/SchedulerItemsRepositoryWithLoading.js.map +1 -0
  22. package/Domain/Repositories/SchedulerItems/index.d.ts +4 -0
  23. package/Domain/Repositories/SchedulerItems/index.js +5 -0
  24. package/Domain/Repositories/SchedulerItems/index.js.map +1 -0
  25. package/Domain/Repositories/Search/ISearchRepository.d.ts +4 -0
  26. package/Domain/Repositories/Search/ISearchRepository.js +3 -0
  27. package/Domain/Repositories/Search/ISearchRepository.js.map +1 -0
  28. package/Domain/Repositories/Search/SearchRepository.d.ts +7 -0
  29. package/Domain/Repositories/Search/SearchRepository.js +15 -0
  30. package/Domain/Repositories/Search/SearchRepository.js.map +1 -0
  31. package/Domain/Repositories/Search/SearchRepositoryFactory.d.ts +7 -0
  32. package/Domain/Repositories/Search/SearchRepositoryFactory.js +17 -0
  33. package/Domain/Repositories/Search/SearchRepositoryFactory.js.map +1 -0
  34. package/Domain/Repositories/Search/index.d.ts +3 -0
  35. package/Domain/Repositories/Search/index.js +4 -0
  36. package/Domain/Repositories/Search/index.js.map +1 -0
  37. package/Domain/Repositories/SelectedItems/ISelectedItemsRepository.d.ts +8 -0
  38. package/Domain/Repositories/SelectedItems/ISelectedItemsRepository.js +3 -0
  39. package/Domain/Repositories/SelectedItems/ISelectedItemsRepository.js.map +1 -0
  40. package/Domain/Repositories/SelectedItems/SelectedItemsRepository.d.ts +12 -0
  41. package/Domain/Repositories/SelectedItems/SelectedItemsRepository.js +27 -0
  42. package/Domain/Repositories/SelectedItems/SelectedItemsRepository.js.map +1 -0
  43. package/Domain/Repositories/SelectedItems/SelectedItemsRepositoryFactory.d.ts +7 -0
  44. package/Domain/Repositories/SelectedItems/SelectedItemsRepositoryFactory.js +17 -0
  45. package/Domain/Repositories/SelectedItems/SelectedItemsRepositoryFactory.js.map +1 -0
  46. package/Domain/Repositories/SelectedItems/index.d.ts +3 -0
  47. package/Domain/Repositories/SelectedItems/index.js +4 -0
  48. package/Domain/Repositories/SelectedItems/index.js.map +1 -0
  49. package/Domain/Repositories/Sorting/SortingRepositoryWithDefaults.d.ts +8 -0
  50. package/Domain/Repositories/Sorting/SortingRepositoryWithDefaults.js +22 -0
  51. package/Domain/Repositories/Sorting/SortingRepositoryWithDefaults.js.map +1 -0
  52. package/Domain/Repositories/Sorting/index.d.ts +1 -0
  53. package/Domain/Repositories/Sorting/index.js +3 -0
  54. package/Domain/Repositories/Sorting/index.js.map +1 -0
  55. package/Domain/Repositories/index.d.ts +4 -0
  56. package/Domain/Repositories/index.js +6 -0
  57. package/Domain/Repositories/index.js.map +1 -0
  58. package/Domain/index.d.ts +2 -0
  59. package/Domain/index.js +4 -0
  60. package/Domain/index.js.map +1 -0
  61. package/Gateways/SchedulerCancelGraphQLGateway.d.ts +7 -0
  62. package/Gateways/SchedulerCancelGraphQLGateway.js +48 -0
  63. package/Gateways/SchedulerCancelGraphQLGateway.js.map +1 -0
  64. package/Gateways/SchedulerGetGraphQLGateway.d.ts +21 -0
  65. package/Gateways/SchedulerGetGraphQLGateway.js +72 -0
  66. package/Gateways/SchedulerGetGraphQLGateway.js.map +1 -0
  67. package/Gateways/SchedulerListGraphQLGateway.d.ts +7 -0
  68. package/Gateways/SchedulerListGraphQLGateway.js +92 -0
  69. package/Gateways/SchedulerListGraphQLGateway.js.map +1 -0
  70. package/Gateways/SchedulerPublishGraphQLGateway.d.ts +7 -0
  71. package/Gateways/SchedulerPublishGraphQLGateway.js +67 -0
  72. package/Gateways/SchedulerPublishGraphQLGateway.js.map +1 -0
  73. package/Gateways/SchedulerUnpublishGraphQLGateway.d.ts +23 -0
  74. package/Gateways/SchedulerUnpublishGraphQLGateway.js +69 -0
  75. package/Gateways/SchedulerUnpublishGraphQLGateway.js.map +1 -0
  76. package/Gateways/abstractions/CancelScheduledActionGateway.d.ts +7 -0
  77. package/Gateways/abstractions/CancelScheduledActionGateway.js +3 -0
  78. package/Gateways/abstractions/CancelScheduledActionGateway.js.map +1 -0
  79. package/Gateways/abstractions/GetScheduledActionGateway.d.ts +9 -0
  80. package/Gateways/abstractions/GetScheduledActionGateway.js +3 -0
  81. package/Gateways/abstractions/GetScheduledActionGateway.js.map +1 -0
  82. package/Gateways/abstractions/ListScheduledActionsGateway.d.ts +27 -0
  83. package/Gateways/abstractions/ListScheduledActionsGateway.js +3 -0
  84. package/Gateways/abstractions/ListScheduledActionsGateway.js.map +1 -0
  85. package/Gateways/abstractions/SchedulePublishActionGateway.d.ts +12 -0
  86. package/Gateways/abstractions/SchedulePublishActionGateway.js +3 -0
  87. package/Gateways/abstractions/SchedulePublishActionGateway.js.map +1 -0
  88. package/Gateways/abstractions/ScheduleUnpublishActionGateway.d.ts +12 -0
  89. package/Gateways/abstractions/ScheduleUnpublishActionGateway.js +3 -0
  90. package/Gateways/abstractions/ScheduleUnpublishActionGateway.js.map +1 -0
  91. package/Gateways/graphql/fields.d.ts +1 -0
  92. package/Gateways/graphql/fields.js +18 -0
  93. package/Gateways/graphql/fields.js.map +1 -0
  94. package/Gateways/index.d.ts +5 -0
  95. package/Gateways/index.js +3 -0
  96. package/Gateways/index.js.map +1 -0
  97. package/Gateways/schema/schedulerEntry.d.ts +16 -0
  98. package/Gateways/schema/schedulerEntry.js +22 -0
  99. package/Gateways/schema/schedulerEntry.js.map +1 -0
  100. package/LICENSE +21 -0
  101. package/Presentation/Scheduler/Scheduler.d.ts +17 -0
  102. package/Presentation/Scheduler/Scheduler.js +67 -0
  103. package/Presentation/Scheduler/Scheduler.js.map +1 -0
  104. package/Presentation/Scheduler/SchedulerControllers.d.ts +30 -0
  105. package/Presentation/Scheduler/SchedulerControllers.js +72 -0
  106. package/Presentation/Scheduler/SchedulerControllers.js.map +1 -0
  107. package/Presentation/Scheduler/SchedulerPresenter.d.ts +32 -0
  108. package/Presentation/Scheduler/SchedulerPresenter.js +44 -0
  109. package/Presentation/Scheduler/SchedulerPresenter.js.map +1 -0
  110. package/Presentation/Scheduler/controllers/CancelItem/CancelItemController.d.ts +7 -0
  111. package/Presentation/Scheduler/controllers/CancelItem/CancelItemController.js +11 -0
  112. package/Presentation/Scheduler/controllers/CancelItem/CancelItemController.js.map +1 -0
  113. package/Presentation/Scheduler/controllers/CancelItem/ICancelItemController.d.ts +3 -0
  114. package/Presentation/Scheduler/controllers/CancelItem/ICancelItemController.js +3 -0
  115. package/Presentation/Scheduler/controllers/CancelItem/ICancelItemController.js.map +1 -0
  116. package/Presentation/Scheduler/controllers/CancelItem/index.d.ts +2 -0
  117. package/Presentation/Scheduler/controllers/CancelItem/index.js +3 -0
  118. package/Presentation/Scheduler/controllers/CancelItem/index.js.map +1 -0
  119. package/Presentation/Scheduler/controllers/GetItem/GetItemController.d.ts +8 -0
  120. package/Presentation/Scheduler/controllers/GetItem/GetItemController.js +11 -0
  121. package/Presentation/Scheduler/controllers/GetItem/GetItemController.js.map +1 -0
  122. package/Presentation/Scheduler/controllers/GetItem/IGetItemController.d.ts +4 -0
  123. package/Presentation/Scheduler/controllers/GetItem/IGetItemController.js +3 -0
  124. package/Presentation/Scheduler/controllers/GetItem/IGetItemController.js.map +1 -0
  125. package/Presentation/Scheduler/controllers/GetItem/index.d.ts +2 -0
  126. package/Presentation/Scheduler/controllers/GetItem/index.js +3 -0
  127. package/Presentation/Scheduler/controllers/GetItem/index.js.map +1 -0
  128. package/Presentation/Scheduler/controllers/ListItems/IListItemsController.d.ts +4 -0
  129. package/Presentation/Scheduler/controllers/ListItems/IListItemsController.js +3 -0
  130. package/Presentation/Scheduler/controllers/ListItems/IListItemsController.js.map +1 -0
  131. package/Presentation/Scheduler/controllers/ListItems/ListItemsController.d.ts +8 -0
  132. package/Presentation/Scheduler/controllers/ListItems/ListItemsController.js +11 -0
  133. package/Presentation/Scheduler/controllers/ListItems/ListItemsController.js.map +1 -0
  134. package/Presentation/Scheduler/controllers/ListItems/index.d.ts +2 -0
  135. package/Presentation/Scheduler/controllers/ListItems/index.js +3 -0
  136. package/Presentation/Scheduler/controllers/ListItems/index.js.map +1 -0
  137. package/Presentation/Scheduler/controllers/ListMoreItems/IListMoreItemsController.d.ts +3 -0
  138. package/Presentation/Scheduler/controllers/ListMoreItems/IListMoreItemsController.js +3 -0
  139. package/Presentation/Scheduler/controllers/ListMoreItems/IListMoreItemsController.js.map +1 -0
  140. package/Presentation/Scheduler/controllers/ListMoreItems/ListMoreItemsController.d.ts +7 -0
  141. package/Presentation/Scheduler/controllers/ListMoreItems/ListMoreItemsController.js +11 -0
  142. package/Presentation/Scheduler/controllers/ListMoreItems/ListMoreItemsController.js.map +1 -0
  143. package/Presentation/Scheduler/controllers/ListMoreItems/index.d.ts +2 -0
  144. package/Presentation/Scheduler/controllers/ListMoreItems/index.js +3 -0
  145. package/Presentation/Scheduler/controllers/ListMoreItems/index.js.map +1 -0
  146. package/Presentation/Scheduler/controllers/PublishItem/IPublishItemController.d.ts +3 -0
  147. package/Presentation/Scheduler/controllers/PublishItem/IPublishItemController.js +3 -0
  148. package/Presentation/Scheduler/controllers/PublishItem/IPublishItemController.js.map +1 -0
  149. package/Presentation/Scheduler/controllers/PublishItem/PublishItemController.d.ts +7 -0
  150. package/Presentation/Scheduler/controllers/PublishItem/PublishItemController.js +11 -0
  151. package/Presentation/Scheduler/controllers/PublishItem/PublishItemController.js.map +1 -0
  152. package/Presentation/Scheduler/controllers/PublishItem/index.d.ts +2 -0
  153. package/Presentation/Scheduler/controllers/PublishItem/index.js +3 -0
  154. package/Presentation/Scheduler/controllers/PublishItem/index.js.map +1 -0
  155. package/Presentation/Scheduler/controllers/SearchItems/ISearchItemsController.d.ts +3 -0
  156. package/Presentation/Scheduler/controllers/SearchItems/ISearchItemsController.js +3 -0
  157. package/Presentation/Scheduler/controllers/SearchItems/ISearchItemsController.js.map +1 -0
  158. package/Presentation/Scheduler/controllers/SearchItems/SearchItemsController.d.ts +8 -0
  159. package/Presentation/Scheduler/controllers/SearchItems/SearchItemsController.js +14 -0
  160. package/Presentation/Scheduler/controllers/SearchItems/SearchItemsController.js.map +1 -0
  161. package/Presentation/Scheduler/controllers/SearchItems/index.d.ts +2 -0
  162. package/Presentation/Scheduler/controllers/SearchItems/index.js +3 -0
  163. package/Presentation/Scheduler/controllers/SearchItems/index.js.map +1 -0
  164. package/Presentation/Scheduler/controllers/SelectAllItems/ISelectAllItemsController.d.ts +3 -0
  165. package/Presentation/Scheduler/controllers/SelectAllItems/ISelectAllItemsController.js +3 -0
  166. package/Presentation/Scheduler/controllers/SelectAllItems/ISelectAllItemsController.js.map +1 -0
  167. package/Presentation/Scheduler/controllers/SelectAllItems/SelectAllItemsController.d.ts +7 -0
  168. package/Presentation/Scheduler/controllers/SelectAllItems/SelectAllItemsController.js +11 -0
  169. package/Presentation/Scheduler/controllers/SelectAllItems/SelectAllItemsController.js.map +1 -0
  170. package/Presentation/Scheduler/controllers/SelectAllItems/index.d.ts +2 -0
  171. package/Presentation/Scheduler/controllers/SelectAllItems/index.js +3 -0
  172. package/Presentation/Scheduler/controllers/SelectAllItems/index.js.map +1 -0
  173. package/Presentation/Scheduler/controllers/SelectItems/ISelectItemsController.d.ts +4 -0
  174. package/Presentation/Scheduler/controllers/SelectItems/ISelectItemsController.js +3 -0
  175. package/Presentation/Scheduler/controllers/SelectItems/ISelectItemsController.js.map +1 -0
  176. package/Presentation/Scheduler/controllers/SelectItems/SelectItemsController.d.ts +8 -0
  177. package/Presentation/Scheduler/controllers/SelectItems/SelectItemsController.js +13 -0
  178. package/Presentation/Scheduler/controllers/SelectItems/SelectItemsController.js.map +1 -0
  179. package/Presentation/Scheduler/controllers/SelectItems/index.d.ts +2 -0
  180. package/Presentation/Scheduler/controllers/SelectItems/index.js +3 -0
  181. package/Presentation/Scheduler/controllers/SelectItems/index.js.map +1 -0
  182. package/Presentation/Scheduler/controllers/SortItems/ISortItemsController.d.ts +4 -0
  183. package/Presentation/Scheduler/controllers/SortItems/ISortItemsController.js +3 -0
  184. package/Presentation/Scheduler/controllers/SortItems/ISortItemsController.js.map +1 -0
  185. package/Presentation/Scheduler/controllers/SortItems/SortItemsController.d.ts +9 -0
  186. package/Presentation/Scheduler/controllers/SortItems/SortItemsController.js +19 -0
  187. package/Presentation/Scheduler/controllers/SortItems/SortItemsController.js.map +1 -0
  188. package/Presentation/Scheduler/controllers/SortItems/index.d.ts +2 -0
  189. package/Presentation/Scheduler/controllers/SortItems/index.js +3 -0
  190. package/Presentation/Scheduler/controllers/SortItems/index.js.map +1 -0
  191. package/Presentation/Scheduler/controllers/UnpublishItem/IUnpublishItemController.d.ts +3 -0
  192. package/Presentation/Scheduler/controllers/UnpublishItem/IUnpublishItemController.js +3 -0
  193. package/Presentation/Scheduler/controllers/UnpublishItem/IUnpublishItemController.js.map +1 -0
  194. package/Presentation/Scheduler/controllers/UnpublishItem/UnpublishItemController.d.ts +7 -0
  195. package/Presentation/Scheduler/controllers/UnpublishItem/UnpublishItemController.js +11 -0
  196. package/Presentation/Scheduler/controllers/UnpublishItem/UnpublishItemController.js.map +1 -0
  197. package/Presentation/Scheduler/controllers/UnpublishItem/index.d.ts +2 -0
  198. package/Presentation/Scheduler/controllers/UnpublishItem/index.js +3 -0
  199. package/Presentation/Scheduler/controllers/UnpublishItem/index.js.map +1 -0
  200. package/Presentation/Scheduler/controllers/UnselectAllItems/IUnselectAllItemsController.d.ts +3 -0
  201. package/Presentation/Scheduler/controllers/UnselectAllItems/IUnselectAllItemsController.js +3 -0
  202. package/Presentation/Scheduler/controllers/UnselectAllItems/IUnselectAllItemsController.js.map +1 -0
  203. package/Presentation/Scheduler/controllers/UnselectAllItems/UnselectAllItemsController.d.ts +7 -0
  204. package/Presentation/Scheduler/controllers/UnselectAllItems/UnselectAllItemsController.js +11 -0
  205. package/Presentation/Scheduler/controllers/UnselectAllItems/UnselectAllItemsController.js.map +1 -0
  206. package/Presentation/Scheduler/controllers/UnselectAllItems/index.d.ts +2 -0
  207. package/Presentation/Scheduler/controllers/UnselectAllItems/index.js +3 -0
  208. package/Presentation/Scheduler/controllers/UnselectAllItems/index.js.map +1 -0
  209. package/Presentation/Scheduler/controllers/index.d.ts +11 -0
  210. package/Presentation/Scheduler/controllers/index.js +13 -0
  211. package/Presentation/Scheduler/controllers/index.js.map +1 -0
  212. package/Presentation/Scheduler/index.d.ts +1 -0
  213. package/Presentation/Scheduler/index.js +3 -0
  214. package/Presentation/Scheduler/index.js.map +1 -0
  215. package/Presentation/SchedulerConfigs/SchedulerConfigs.d.ts +2 -0
  216. package/Presentation/SchedulerConfigs/SchedulerConfigs.js +55 -0
  217. package/Presentation/SchedulerConfigs/SchedulerConfigs.js.map +1 -0
  218. package/Presentation/SchedulerConfigs/index.d.ts +1 -0
  219. package/Presentation/SchedulerConfigs/index.js +3 -0
  220. package/Presentation/SchedulerConfigs/index.js.map +1 -0
  221. package/Presentation/SchedulerRenderer/SchedulerRenderer.d.ts +6 -0
  222. package/Presentation/SchedulerRenderer/SchedulerRenderer.js +21 -0
  223. package/Presentation/SchedulerRenderer/SchedulerRenderer.js.map +1 -0
  224. package/Presentation/SchedulerRenderer/index.d.ts +1 -0
  225. package/Presentation/SchedulerRenderer/index.js +3 -0
  226. package/Presentation/SchedulerRenderer/index.js.map +1 -0
  227. package/Presentation/abstractions/ISchedulerControllers.d.ts +14 -0
  228. package/Presentation/abstractions/ISchedulerControllers.js +3 -0
  229. package/Presentation/abstractions/ISchedulerControllers.js.map +1 -0
  230. package/Presentation/abstractions/ISchedulerPresenter.d.ts +20 -0
  231. package/Presentation/abstractions/ISchedulerPresenter.js +3 -0
  232. package/Presentation/abstractions/ISchedulerPresenter.js.map +1 -0
  233. package/Presentation/abstractions/index.d.ts +2 -0
  234. package/Presentation/abstractions/index.js +3 -0
  235. package/Presentation/abstractions/index.js.map +1 -0
  236. package/Presentation/components/Actions/CancelItem/CancelItem.d.ts +2 -0
  237. package/Presentation/components/Actions/CancelItem/CancelItem.js +24 -0
  238. package/Presentation/components/Actions/CancelItem/CancelItem.js.map +1 -0
  239. package/Presentation/components/Actions/CancelItem/index.d.ts +1 -0
  240. package/Presentation/components/Actions/CancelItem/index.js +3 -0
  241. package/Presentation/components/Actions/CancelItem/index.js.map +1 -0
  242. package/Presentation/components/Actions/index.d.ts +1 -0
  243. package/Presentation/components/Actions/index.js +3 -0
  244. package/Presentation/components/Actions/index.js.map +1 -0
  245. package/Presentation/components/BottomInfoBar/BottomInfoBar.d.ts +2 -0
  246. package/Presentation/components/BottomInfoBar/BottomInfoBar.js +20 -0
  247. package/Presentation/components/BottomInfoBar/BottomInfoBar.js.map +1 -0
  248. package/Presentation/components/BottomInfoBar/BottomInfoBar.styled.d.ts +20 -0
  249. package/Presentation/components/BottomInfoBar/BottomInfoBar.styled.js +69 -0
  250. package/Presentation/components/BottomInfoBar/BottomInfoBar.styled.js.map +1 -0
  251. package/Presentation/components/BottomInfoBar/ListMeta.d.ts +7 -0
  252. package/Presentation/components/BottomInfoBar/ListMeta.js +12 -0
  253. package/Presentation/components/BottomInfoBar/ListMeta.js.map +1 -0
  254. package/Presentation/components/BottomInfoBar/ListStatus.d.ts +5 -0
  255. package/Presentation/components/BottomInfoBar/ListStatus.js +16 -0
  256. package/Presentation/components/BottomInfoBar/ListStatus.js.map +1 -0
  257. package/Presentation/components/BottomInfoBar/index.d.ts +1 -0
  258. package/Presentation/components/BottomInfoBar/index.js +3 -0
  259. package/Presentation/components/BottomInfoBar/index.js.map +1 -0
  260. package/Presentation/components/Cells/CellActions/CellActions.d.ts +2 -0
  261. package/Presentation/components/Cells/CellActions/CellActions.js +23 -0
  262. package/Presentation/components/Cells/CellActions/CellActions.js.map +1 -0
  263. package/Presentation/components/Cells/CellActions/index.d.ts +1 -0
  264. package/Presentation/components/Cells/CellActions/index.js +3 -0
  265. package/Presentation/components/Cells/CellActions/index.js.map +1 -0
  266. package/Presentation/components/Cells/CellRevision/CellRevision.d.ts +2 -0
  267. package/Presentation/components/Cells/CellRevision/CellRevision.js +20 -0
  268. package/Presentation/components/Cells/CellRevision/CellRevision.js.map +1 -0
  269. package/Presentation/components/Cells/CellRevision/CellRevision.styled.d.ts +11 -0
  270. package/Presentation/components/Cells/CellRevision/CellRevision.styled.js +44 -0
  271. package/Presentation/components/Cells/CellRevision/CellRevision.styled.js.map +1 -0
  272. package/Presentation/components/Cells/CellRevision/index.d.ts +1 -0
  273. package/Presentation/components/Cells/CellRevision/index.js +3 -0
  274. package/Presentation/components/Cells/CellRevision/index.js.map +1 -0
  275. package/Presentation/components/Cells/CellScheduledBy/CellScheduledBy.d.ts +2 -0
  276. package/Presentation/components/Cells/CellScheduledBy/CellScheduledBy.js +13 -0
  277. package/Presentation/components/Cells/CellScheduledBy/CellScheduledBy.js.map +1 -0
  278. package/Presentation/components/Cells/CellScheduledBy/index.d.ts +1 -0
  279. package/Presentation/components/Cells/CellScheduledBy/index.js +3 -0
  280. package/Presentation/components/Cells/CellScheduledBy/index.js.map +1 -0
  281. package/Presentation/components/Cells/CellScheduledOn/CellScheduledOn.d.ts +24 -0
  282. package/Presentation/components/Cells/CellScheduledOn/CellScheduledOn.js +24 -0
  283. package/Presentation/components/Cells/CellScheduledOn/CellScheduledOn.js.map +1 -0
  284. package/Presentation/components/Cells/CellScheduledOn/index.d.ts +1 -0
  285. package/Presentation/components/Cells/CellScheduledOn/index.js +3 -0
  286. package/Presentation/components/Cells/CellScheduledOn/index.js.map +1 -0
  287. package/Presentation/components/Cells/CellTitle/CellTitle.d.ts +2 -0
  288. package/Presentation/components/Cells/CellTitle/CellTitle.js +17 -0
  289. package/Presentation/components/Cells/CellTitle/CellTitle.js.map +1 -0
  290. package/Presentation/components/Cells/CellTitle/CellTitle.styled.d.ts +11 -0
  291. package/Presentation/components/Cells/CellTitle/CellTitle.styled.js +44 -0
  292. package/Presentation/components/Cells/CellTitle/CellTitle.styled.js.map +1 -0
  293. package/Presentation/components/Cells/CellTitle/index.d.ts +1 -0
  294. package/Presentation/components/Cells/CellTitle/index.js +3 -0
  295. package/Presentation/components/Cells/CellTitle/index.js.map +1 -0
  296. package/Presentation/components/Cells/CellType/CellActionType.d.ts +2 -0
  297. package/Presentation/components/Cells/CellType/CellActionType.js +18 -0
  298. package/Presentation/components/Cells/CellType/CellActionType.js.map +1 -0
  299. package/Presentation/components/Cells/CellType/CellActionType.styled.d.ts +11 -0
  300. package/Presentation/components/Cells/CellType/CellActionType.styled.js +44 -0
  301. package/Presentation/components/Cells/CellType/CellActionType.styled.js.map +1 -0
  302. package/Presentation/components/Cells/CellType/index.d.ts +1 -0
  303. package/Presentation/components/Cells/CellType/index.js +3 -0
  304. package/Presentation/components/Cells/CellType/index.js.map +1 -0
  305. package/Presentation/components/Cells/index.d.ts +6 -0
  306. package/Presentation/components/Cells/index.js +8 -0
  307. package/Presentation/components/Cells/index.js.map +1 -0
  308. package/Presentation/components/Empty/Empty.d.ts +2 -0
  309. package/Presentation/components/Empty/Empty.js +22 -0
  310. package/Presentation/components/Empty/Empty.js.map +1 -0
  311. package/Presentation/components/Empty/Empty.styled.d.ts +8 -0
  312. package/Presentation/components/Empty/Empty.styled.js +30 -0
  313. package/Presentation/components/Empty/Empty.styled.js.map +1 -0
  314. package/Presentation/components/Empty/index.d.ts +1 -0
  315. package/Presentation/components/Empty/index.js +3 -0
  316. package/Presentation/components/Empty/index.js.map +1 -0
  317. package/Presentation/components/ScheduleDialog/ScheduleDialogAction.d.ts +15 -0
  318. package/Presentation/components/ScheduleDialog/ScheduleDialogAction.js +51 -0
  319. package/Presentation/components/ScheduleDialog/ScheduleDialogAction.js.map +1 -0
  320. package/Presentation/components/ScheduleDialog/index.d.ts +2 -0
  321. package/Presentation/components/ScheduleDialog/index.js +4 -0
  322. package/Presentation/components/ScheduleDialog/index.js.map +1 -0
  323. package/Presentation/components/ScheduleDialog/types.d.ts +15 -0
  324. package/Presentation/components/ScheduleDialog/types.js +3 -0
  325. package/Presentation/components/ScheduleDialog/types.js.map +1 -0
  326. package/Presentation/components/ScheduleDialog/useGetScheduledAction.d.ts +7 -0
  327. package/Presentation/components/ScheduleDialog/useGetScheduledAction.js +31 -0
  328. package/Presentation/components/ScheduleDialog/useGetScheduledAction.js.map +1 -0
  329. package/Presentation/components/ScheduleDialog/useScheduleDialog.d.ts +42 -0
  330. package/Presentation/components/ScheduleDialog/useScheduleDialog.js +221 -0
  331. package/Presentation/components/ScheduleDialog/useScheduleDialog.js.map +1 -0
  332. package/Presentation/components/SchedulerOverlay/SchedulerOverlay.d.ts +7 -0
  333. package/Presentation/components/SchedulerOverlay/SchedulerOverlay.js +36 -0
  334. package/Presentation/components/SchedulerOverlay/SchedulerOverlay.js.map +1 -0
  335. package/Presentation/components/SchedulerOverlay/index.d.ts +1 -0
  336. package/Presentation/components/SchedulerOverlay/index.js +3 -0
  337. package/Presentation/components/SchedulerOverlay/index.js.map +1 -0
  338. package/Presentation/components/SearchInput/SearchInput.d.ts +2 -0
  339. package/Presentation/components/SearchInput/SearchInput.js +37 -0
  340. package/Presentation/components/SearchInput/SearchInput.js.map +1 -0
  341. package/Presentation/components/SearchInput/index.d.ts +1 -0
  342. package/Presentation/components/SearchInput/index.js +3 -0
  343. package/Presentation/components/SearchInput/index.js.map +1 -0
  344. package/Presentation/components/Table/Table.d.ts +2 -0
  345. package/Presentation/components/Table/Table.js +34 -0
  346. package/Presentation/components/Table/Table.js.map +1 -0
  347. package/Presentation/components/Table/index.d.ts +1 -0
  348. package/Presentation/components/Table/index.js +3 -0
  349. package/Presentation/components/Table/index.js.map +1 -0
  350. package/Presentation/components/Title/Title.d.ts +5 -0
  351. package/Presentation/components/Title/Title.js +15 -0
  352. package/Presentation/components/Title/Title.js.map +1 -0
  353. package/Presentation/components/Title/Title.styled.d.ts +4 -0
  354. package/Presentation/components/Title/Title.styled.js +18 -0
  355. package/Presentation/components/Title/Title.styled.js.map +1 -0
  356. package/Presentation/components/Title/index.d.ts +1 -0
  357. package/Presentation/components/Title/index.js +3 -0
  358. package/Presentation/components/Title/index.js.map +1 -0
  359. package/Presentation/configs/index.d.ts +1 -0
  360. package/Presentation/configs/index.js +3 -0
  361. package/Presentation/configs/index.js.map +1 -0
  362. package/Presentation/configs/list/Browser/EntryAction.d.ts +7 -0
  363. package/Presentation/configs/list/Browser/EntryAction.js +16 -0
  364. package/Presentation/configs/list/Browser/EntryAction.js.map +1 -0
  365. package/Presentation/configs/list/Browser/Table/Column.d.ts +14 -0
  366. package/Presentation/configs/list/Browser/Table/Column.js +14 -0
  367. package/Presentation/configs/list/Browser/Table/Column.js.map +1 -0
  368. package/Presentation/configs/list/Browser/Table/Sorting.d.ts +5 -0
  369. package/Presentation/configs/list/Browser/Table/Sorting.js +10 -0
  370. package/Presentation/configs/list/Browser/Table/Sorting.js.map +1 -0
  371. package/Presentation/configs/list/Browser/Table/index.d.ts +18 -0
  372. package/Presentation/configs/list/Browser/Table/index.js +8 -0
  373. package/Presentation/configs/list/Browser/Table/index.js.map +1 -0
  374. package/Presentation/configs/list/Browser/index.d.ts +23 -0
  375. package/Presentation/configs/list/Browser/index.js +8 -0
  376. package/Presentation/configs/list/Browser/index.js.map +1 -0
  377. package/Presentation/configs/list/SchedulerListConfig.d.ts +33 -0
  378. package/Presentation/configs/list/SchedulerListConfig.js +31 -0
  379. package/Presentation/configs/list/SchedulerListConfig.js.map +1 -0
  380. package/Presentation/configs/list/index.d.ts +1 -0
  381. package/Presentation/configs/list/index.js +3 -0
  382. package/Presentation/configs/list/index.js.map +1 -0
  383. package/Presentation/hooks/index.d.ts +3 -0
  384. package/Presentation/hooks/index.js +5 -0
  385. package/Presentation/hooks/index.js.map +1 -0
  386. package/Presentation/hooks/useCancelSchedulerItem.d.ts +8 -0
  387. package/Presentation/hooks/useCancelSchedulerItem.js +32 -0
  388. package/Presentation/hooks/useCancelSchedulerItem.js.map +1 -0
  389. package/Presentation/hooks/useScheduler.d.ts +28 -0
  390. package/Presentation/hooks/useScheduler.js +52 -0
  391. package/Presentation/hooks/useScheduler.js.map +1 -0
  392. package/Presentation/hooks/useSchedulerItem.d.ts +11 -0
  393. package/Presentation/hooks/useSchedulerItem.js +9 -0
  394. package/Presentation/hooks/useSchedulerItem.js.map +1 -0
  395. package/Presentation/index.d.ts +25 -0
  396. package/Presentation/index.js +56 -0
  397. package/Presentation/index.js.map +1 -0
  398. package/README.md +11 -0
  399. package/UseCases/CancelItem/CancelItemUseCase.d.ts +7 -0
  400. package/UseCases/CancelItem/CancelItemUseCase.js +12 -0
  401. package/UseCases/CancelItem/CancelItemUseCase.js.map +1 -0
  402. package/UseCases/CancelItem/ICancelItemUseCase.d.ts +3 -0
  403. package/UseCases/CancelItem/ICancelItemUseCase.js +3 -0
  404. package/UseCases/CancelItem/ICancelItemUseCase.js.map +1 -0
  405. package/UseCases/CancelItem/index.d.ts +2 -0
  406. package/UseCases/CancelItem/index.js +3 -0
  407. package/UseCases/CancelItem/index.js.map +1 -0
  408. package/UseCases/GetItem/GetItemUseCase.d.ts +8 -0
  409. package/UseCases/GetItem/GetItemUseCase.js +12 -0
  410. package/UseCases/GetItem/GetItemUseCase.js.map +1 -0
  411. package/UseCases/GetItem/IGetItemUseCase.d.ts +4 -0
  412. package/UseCases/GetItem/IGetItemUseCase.js +3 -0
  413. package/UseCases/GetItem/IGetItemUseCase.js.map +1 -0
  414. package/UseCases/GetItem/index.d.ts +2 -0
  415. package/UseCases/GetItem/index.js +3 -0
  416. package/UseCases/GetItem/index.js.map +1 -0
  417. package/UseCases/GetScheduledItem/GetScheduledItemUseCase.d.ts +7 -0
  418. package/UseCases/GetScheduledItem/GetScheduledItemUseCase.js +13 -0
  419. package/UseCases/GetScheduledItem/GetScheduledItemUseCase.js.map +1 -0
  420. package/UseCases/GetScheduledItem/IGetScheduledItemUseCase.d.ts +4 -0
  421. package/UseCases/GetScheduledItem/IGetScheduledItemUseCase.js +3 -0
  422. package/UseCases/GetScheduledItem/IGetScheduledItemUseCase.js.map +1 -0
  423. package/UseCases/GetScheduledItem/index.d.ts +2 -0
  424. package/UseCases/GetScheduledItem/index.js +3 -0
  425. package/UseCases/GetScheduledItem/index.js.map +1 -0
  426. package/UseCases/ListItems/IListItemsUseCase.d.ts +4 -0
  427. package/UseCases/ListItems/IListItemsUseCase.js +3 -0
  428. package/UseCases/ListItems/IListItemsUseCase.js.map +1 -0
  429. package/UseCases/ListItems/ListItemsUseCase.d.ts +8 -0
  430. package/UseCases/ListItems/ListItemsUseCase.js +12 -0
  431. package/UseCases/ListItems/ListItemsUseCase.js.map +1 -0
  432. package/UseCases/ListItems/ListItemsUseCaseWithSearch.d.ts +9 -0
  433. package/UseCases/ListItems/ListItemsUseCaseWithSearch.js +22 -0
  434. package/UseCases/ListItems/ListItemsUseCaseWithSearch.js.map +1 -0
  435. package/UseCases/ListItems/ListItemsUseCaseWithSorting.d.ts +9 -0
  436. package/UseCases/ListItems/ListItemsUseCaseWithSorting.js +22 -0
  437. package/UseCases/ListItems/ListItemsUseCaseWithSorting.js.map +1 -0
  438. package/UseCases/ListItems/index.d.ts +4 -0
  439. package/UseCases/ListItems/index.js +5 -0
  440. package/UseCases/ListItems/index.js.map +1 -0
  441. package/UseCases/ListMoreItems/IListMoreItemsUseCase.d.ts +3 -0
  442. package/UseCases/ListMoreItems/IListMoreItemsUseCase.js +3 -0
  443. package/UseCases/ListMoreItems/IListMoreItemsUseCase.js.map +1 -0
  444. package/UseCases/ListMoreItems/ListMoreItemsUseCase.d.ts +7 -0
  445. package/UseCases/ListMoreItems/ListMoreItemsUseCase.js +12 -0
  446. package/UseCases/ListMoreItems/ListMoreItemsUseCase.js.map +1 -0
  447. package/UseCases/ListMoreItems/index.d.ts +2 -0
  448. package/UseCases/ListMoreItems/index.js +3 -0
  449. package/UseCases/ListMoreItems/index.js.map +1 -0
  450. package/UseCases/PublishItem/IPublishItemUseCase.d.ts +3 -0
  451. package/UseCases/PublishItem/IPublishItemUseCase.js +3 -0
  452. package/UseCases/PublishItem/IPublishItemUseCase.js.map +1 -0
  453. package/UseCases/PublishItem/PublishItemUseCase.d.ts +7 -0
  454. package/UseCases/PublishItem/PublishItemUseCase.js +12 -0
  455. package/UseCases/PublishItem/PublishItemUseCase.js.map +1 -0
  456. package/UseCases/PublishItem/index.d.ts +2 -0
  457. package/UseCases/PublishItem/index.js +3 -0
  458. package/UseCases/PublishItem/index.js.map +1 -0
  459. package/UseCases/SearchItems/ISearchItemsUseCase.d.ts +3 -0
  460. package/UseCases/SearchItems/ISearchItemsUseCase.js +3 -0
  461. package/UseCases/SearchItems/ISearchItemsUseCase.js.map +1 -0
  462. package/UseCases/SearchItems/SearchItemsUseCase.d.ts +7 -0
  463. package/UseCases/SearchItems/SearchItemsUseCase.js +12 -0
  464. package/UseCases/SearchItems/SearchItemsUseCase.js.map +1 -0
  465. package/UseCases/SearchItems/index.d.ts +2 -0
  466. package/UseCases/SearchItems/index.js +3 -0
  467. package/UseCases/SearchItems/index.js.map +1 -0
  468. package/UseCases/SelectAllItems/ISelectAllItemsUseCase.d.ts +3 -0
  469. package/UseCases/SelectAllItems/ISelectAllItemsUseCase.js +3 -0
  470. package/UseCases/SelectAllItems/ISelectAllItemsUseCase.js.map +1 -0
  471. package/UseCases/SelectAllItems/SelectAllItemsUseCase.d.ts +7 -0
  472. package/UseCases/SelectAllItems/SelectAllItemsUseCase.js +12 -0
  473. package/UseCases/SelectAllItems/SelectAllItemsUseCase.js.map +1 -0
  474. package/UseCases/SelectAllItems/index.d.ts +2 -0
  475. package/UseCases/SelectAllItems/index.js +3 -0
  476. package/UseCases/SelectAllItems/index.js.map +1 -0
  477. package/UseCases/SelectItems/ISelectItemsUseCase.d.ts +4 -0
  478. package/UseCases/SelectItems/ISelectItemsUseCase.js +3 -0
  479. package/UseCases/SelectItems/ISelectItemsUseCase.js.map +1 -0
  480. package/UseCases/SelectItems/SelectItemsUseCase.d.ts +7 -0
  481. package/UseCases/SelectItems/SelectItemsUseCase.js +12 -0
  482. package/UseCases/SelectItems/SelectItemsUseCase.js.map +1 -0
  483. package/UseCases/SelectItems/index.d.ts +2 -0
  484. package/UseCases/SelectItems/index.js +3 -0
  485. package/UseCases/SelectItems/index.js.map +1 -0
  486. package/UseCases/SortItems/ISortItemsUseCase.d.ts +4 -0
  487. package/UseCases/SortItems/ISortItemsUseCase.js +3 -0
  488. package/UseCases/SortItems/ISortItemsUseCase.js.map +1 -0
  489. package/UseCases/SortItems/SortItemsUseCase.d.ts +7 -0
  490. package/UseCases/SortItems/SortItemsUseCase.js +12 -0
  491. package/UseCases/SortItems/SortItemsUseCase.js.map +1 -0
  492. package/UseCases/SortItems/index.d.ts +2 -0
  493. package/UseCases/SortItems/index.js +3 -0
  494. package/UseCases/SortItems/index.js.map +1 -0
  495. package/UseCases/UnSelectAllItems/IUnselectAllItemsUseCase.d.ts +3 -0
  496. package/UseCases/UnSelectAllItems/IUnselectAllItemsUseCase.js +3 -0
  497. package/UseCases/UnSelectAllItems/IUnselectAllItemsUseCase.js.map +1 -0
  498. package/UseCases/UnSelectAllItems/UnselectAllItemsUseCase.d.ts +7 -0
  499. package/UseCases/UnSelectAllItems/UnselectAllItemsUseCase.js +12 -0
  500. package/UseCases/UnSelectAllItems/UnselectAllItemsUseCase.js.map +1 -0
  501. package/UseCases/UnSelectAllItems/index.d.ts +2 -0
  502. package/UseCases/UnSelectAllItems/index.js +3 -0
  503. package/UseCases/UnSelectAllItems/index.js.map +1 -0
  504. package/UseCases/UnpublishItem/IUnpublishItemUseCase.d.ts +3 -0
  505. package/UseCases/UnpublishItem/IUnpublishItemUseCase.js +3 -0
  506. package/UseCases/UnpublishItem/IUnpublishItemUseCase.js.map +1 -0
  507. package/UseCases/UnpublishItem/UnpublishItemUseCase.d.ts +7 -0
  508. package/UseCases/UnpublishItem/UnpublishItemUseCase.js +12 -0
  509. package/UseCases/UnpublishItem/UnpublishItemUseCase.js.map +1 -0
  510. package/UseCases/UnpublishItem/index.d.ts +2 -0
  511. package/UseCases/UnpublishItem/index.js +3 -0
  512. package/UseCases/UnpublishItem/index.js.map +1 -0
  513. package/UseCases/index.d.ts +11 -0
  514. package/UseCases/index.js +13 -0
  515. package/UseCases/index.js.map +1 -0
  516. package/index.d.ts +1 -0
  517. package/index.js +3 -0
  518. package/index.js.map +1 -0
  519. package/package.json +55 -0
  520. package/types.d.ts +37 -0
  521. package/types.js +15 -0
  522. package/types.js.map +1 -0
@@ -0,0 +1,55 @@
1
+ import React from "react";
2
+ import { SchedulerListConfig } from "../configs/index.js";
3
+ import { CellActions, CellScheduledBy, CellScheduledOn, CellTitle, CellActionType, CellRevision } from "../components/Cells/index.js";
4
+ import { CancelItemAction } from "../components/Actions/index.js";
5
+ const {
6
+ Browser
7
+ } = SchedulerListConfig;
8
+ export const SchedulerConfigs = () => {
9
+ return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(SchedulerListConfig, null, /*#__PURE__*/React.createElement(Browser.Table.Column, {
10
+ name: "title",
11
+ header: "Title",
12
+ cell: /*#__PURE__*/React.createElement(CellTitle, null),
13
+ sortable: true,
14
+ hideable: false,
15
+ size: 200
16
+ }), /*#__PURE__*/React.createElement(Browser.Table.Column, {
17
+ name: "revision",
18
+ header: "Revision",
19
+ cell: /*#__PURE__*/React.createElement(CellRevision, null),
20
+ hideable: false
21
+ }), /*#__PURE__*/React.createElement(Browser.Table.Column, {
22
+ name: "scheduledBy",
23
+ header: "Author",
24
+ cell: /*#__PURE__*/React.createElement(CellScheduledBy, null),
25
+ hideable: false
26
+ }), /*#__PURE__*/React.createElement(Browser.Table.Column, {
27
+ name: "actionType",
28
+ header: "Action Type",
29
+ cell: /*#__PURE__*/React.createElement(CellActionType, null),
30
+ hideable: false
31
+ }), /*#__PURE__*/React.createElement(Browser.Table.Column, {
32
+ name: "scheduledFor",
33
+ header: "Action Time",
34
+ cell: /*#__PURE__*/React.createElement(CellScheduledOn, null),
35
+ sortable: true,
36
+ hideable: false
37
+ }), /*#__PURE__*/React.createElement(Browser.Table.Column, {
38
+ name: "actions",
39
+ header: " ",
40
+ cell: /*#__PURE__*/React.createElement(CellActions, null),
41
+ size: 80,
42
+ className: "rmwc-data-table__cell--align-end",
43
+ hideable: false,
44
+ resizable: false
45
+ }), /*#__PURE__*/React.createElement(Browser.Table.Sorting, {
46
+ name: "scheduledFor",
47
+ field: "scheduledFor",
48
+ order: "desc"
49
+ }), /*#__PURE__*/React.createElement(Browser.EntryAction, {
50
+ name: "cancel",
51
+ element: /*#__PURE__*/React.createElement(CancelItemAction, null)
52
+ })));
53
+ };
54
+
55
+ //# sourceMappingURL=SchedulerConfigs.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","SchedulerListConfig","CellActions","CellScheduledBy","CellScheduledOn","CellTitle","CellActionType","CellRevision","CancelItemAction","Browser","SchedulerConfigs","createElement","Fragment","Table","Column","name","header","cell","sortable","hideable","size","className","resizable","Sorting","field","order","EntryAction","element"],"sources":["SchedulerConfigs.tsx"],"sourcesContent":["import React from \"react\";\nimport { SchedulerListConfig } from \"~/Presentation/configs/index.js\";\nimport {\n CellActions,\n CellScheduledBy,\n CellScheduledOn,\n CellTitle,\n CellActionType,\n CellRevision\n} from \"~/Presentation/components/Cells/index.js\";\nimport { CancelItemAction } from \"~/Presentation/components/Actions/index.js\";\n\nconst { Browser } = SchedulerListConfig;\n\nexport const SchedulerConfigs = () => {\n return (\n <>\n <SchedulerListConfig>\n <Browser.Table.Column\n name={\"title\"}\n header={\"Title\"}\n cell={<CellTitle />}\n sortable={true}\n hideable={false}\n size={200}\n />\n <Browser.Table.Column\n name={\"revision\"}\n header={\"Revision\"}\n cell={<CellRevision />}\n hideable={false}\n />\n <Browser.Table.Column\n name={\"scheduledBy\"}\n header={\"Author\"}\n cell={<CellScheduledBy />}\n hideable={false}\n />\n <Browser.Table.Column\n name={\"actionType\"}\n header={\"Action Type\"}\n cell={<CellActionType />}\n hideable={false}\n />\n <Browser.Table.Column\n name={\"scheduledFor\"}\n header={\"Action Time\"}\n cell={<CellScheduledOn />}\n sortable={true}\n hideable={false}\n />\n <Browser.Table.Column\n name={\"actions\"}\n header={\" \"}\n cell={<CellActions />}\n size={80}\n className={\"rmwc-data-table__cell--align-end\"}\n hideable={false}\n resizable={false}\n />\n <Browser.Table.Sorting\n name={\"scheduledFor\"}\n field={\"scheduledFor\"}\n order={\"desc\"}\n />\n <Browser.EntryAction name={\"cancel\"} element={<CancelItemAction />} />\n </SchedulerListConfig>\n </>\n );\n};\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,mBAAmB;AAC5B,SACIC,WAAW,EACXC,eAAe,EACfC,eAAe,EACfC,SAAS,EACTC,cAAc,EACdC,YAAY;AAEhB,SAASC,gBAAgB;AAEzB,MAAM;EAAEC;AAAQ,CAAC,GAAGR,mBAAmB;AAEvC,OAAO,MAAMS,gBAAgB,GAAGA,CAAA,KAAM;EAClC,oBACIV,KAAA,CAAAW,aAAA,CAAAX,KAAA,CAAAY,QAAA,qBACIZ,KAAA,CAAAW,aAAA,CAACV,mBAAmB,qBAChBD,KAAA,CAAAW,aAAA,CAACF,OAAO,CAACI,KAAK,CAACC,MAAM;IACjBC,IAAI,EAAE,OAAQ;IACdC,MAAM,EAAE,OAAQ;IAChBC,IAAI,eAAEjB,KAAA,CAAAW,aAAA,CAACN,SAAS,MAAE,CAAE;IACpBa,QAAQ,EAAE,IAAK;IACfC,QAAQ,EAAE,KAAM;IAChBC,IAAI,EAAE;EAAI,CACb,CAAC,eACFpB,KAAA,CAAAW,aAAA,CAACF,OAAO,CAACI,KAAK,CAACC,MAAM;IACjBC,IAAI,EAAE,UAAW;IACjBC,MAAM,EAAE,UAAW;IACnBC,IAAI,eAAEjB,KAAA,CAAAW,aAAA,CAACJ,YAAY,MAAE,CAAE;IACvBY,QAAQ,EAAE;EAAM,CACnB,CAAC,eACFnB,KAAA,CAAAW,aAAA,CAACF,OAAO,CAACI,KAAK,CAACC,MAAM;IACjBC,IAAI,EAAE,aAAc;IACpBC,MAAM,EAAE,QAAS;IACjBC,IAAI,eAAEjB,KAAA,CAAAW,aAAA,CAACR,eAAe,MAAE,CAAE;IAC1BgB,QAAQ,EAAE;EAAM,CACnB,CAAC,eACFnB,KAAA,CAAAW,aAAA,CAACF,OAAO,CAACI,KAAK,CAACC,MAAM;IACjBC,IAAI,EAAE,YAAa;IACnBC,MAAM,EAAE,aAAc;IACtBC,IAAI,eAAEjB,KAAA,CAAAW,aAAA,CAACL,cAAc,MAAE,CAAE;IACzBa,QAAQ,EAAE;EAAM,CACnB,CAAC,eACFnB,KAAA,CAAAW,aAAA,CAACF,OAAO,CAACI,KAAK,CAACC,MAAM;IACjBC,IAAI,EAAE,cAAe;IACrBC,MAAM,EAAE,aAAc;IACtBC,IAAI,eAAEjB,KAAA,CAAAW,aAAA,CAACP,eAAe,MAAE,CAAE;IAC1Bc,QAAQ,EAAE,IAAK;IACfC,QAAQ,EAAE;EAAM,CACnB,CAAC,eACFnB,KAAA,CAAAW,aAAA,CAACF,OAAO,CAACI,KAAK,CAACC,MAAM;IACjBC,IAAI,EAAE,SAAU;IAChBC,MAAM,EAAE,GAAI;IACZC,IAAI,eAAEjB,KAAA,CAAAW,aAAA,CAACT,WAAW,MAAE,CAAE;IACtBkB,IAAI,EAAE,EAAG;IACTC,SAAS,EAAE,kCAAmC;IAC9CF,QAAQ,EAAE,KAAM;IAChBG,SAAS,EAAE;EAAM,CACpB,CAAC,eACFtB,KAAA,CAAAW,aAAA,CAACF,OAAO,CAACI,KAAK,CAACU,OAAO;IAClBR,IAAI,EAAE,cAAe;IACrBS,KAAK,EAAE,cAAe;IACtBC,KAAK,EAAE;EAAO,CACjB,CAAC,eACFzB,KAAA,CAAAW,aAAA,CAACF,OAAO,CAACiB,WAAW;IAACX,IAAI,EAAE,QAAS;IAACY,OAAO,eAAE3B,KAAA,CAAAW,aAAA,CAACH,gBAAgB,MAAE;EAAE,CAAE,CACpD,CACvB,CAAC;AAEX,CAAC","ignoreList":[]}
@@ -0,0 +1 @@
1
+ export * from "./SchedulerConfigs.js";
@@ -0,0 +1,3 @@
1
+ export * from "./SchedulerConfigs.js";
2
+
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./SchedulerConfigs.js\";\n"],"mappings":"AAAA","ignoreList":[]}
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { type SchedulerProps } from "../Scheduler/index.js";
3
+ export type SchedulerRendererProps = Omit<SchedulerProps, "render" | "sorting" | "title"> & {
4
+ title?: string;
5
+ };
6
+ export declare const SchedulerRenderer: ({ title, ...props }: SchedulerRendererProps) => React.JSX.Element | null;
@@ -0,0 +1,21 @@
1
+ import React from "react";
2
+ import { Sorting } from "@webiny/app-utils";
3
+ import { Scheduler } from "../Scheduler/index.js";
4
+ import { useSchedulerListConfig } from "../configs/index.js";
5
+ export const SchedulerRenderer = ({
6
+ title = "Scheduler",
7
+ ...props
8
+ }) => {
9
+ const {
10
+ browser
11
+ } = useSchedulerListConfig();
12
+ if (!browser.table.sorting?.length) {
13
+ return null;
14
+ }
15
+ return /*#__PURE__*/React.createElement(Scheduler, Object.assign({}, props, {
16
+ title: title,
17
+ sorting: browser.table.sorting.map(sort => Sorting.create(sort))
18
+ }));
19
+ };
20
+
21
+ //# sourceMappingURL=SchedulerRenderer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","Sorting","Scheduler","useSchedulerListConfig","SchedulerRenderer","title","props","browser","table","sorting","length","createElement","Object","assign","map","sort","create"],"sources":["SchedulerRenderer.tsx"],"sourcesContent":["import React from \"react\";\nimport { Sorting } from \"@webiny/app-utils\";\nimport { Scheduler, type SchedulerProps } from \"../Scheduler/index.js\";\nimport { useSchedulerListConfig } from \"~/Presentation/configs/index.js\";\n\nexport type SchedulerRendererProps = Omit<SchedulerProps, \"render\" | \"sorting\" | \"title\"> & {\n title?: string;\n};\n\nexport const SchedulerRenderer = ({ title = \"Scheduler\", ...props }: SchedulerRendererProps) => {\n const { browser } = useSchedulerListConfig();\n\n if (!browser.table.sorting?.length) {\n return null;\n }\n\n return (\n <Scheduler\n {...props}\n title={title}\n sorting={browser.table.sorting.map(sort => Sorting.create(sort))}\n />\n );\n};\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,OAAO,QAAQ,mBAAmB;AAC3C,SAASC,SAAS;AAClB,SAASC,sBAAsB;AAM/B,OAAO,MAAMC,iBAAiB,GAAGA,CAAC;EAAEC,KAAK,GAAG,WAAW;EAAE,GAAGC;AAA8B,CAAC,KAAK;EAC5F,MAAM;IAAEC;EAAQ,CAAC,GAAGJ,sBAAsB,CAAC,CAAC;EAE5C,IAAI,CAACI,OAAO,CAACC,KAAK,CAACC,OAAO,EAAEC,MAAM,EAAE;IAChC,OAAO,IAAI;EACf;EAEA,oBACIV,KAAA,CAAAW,aAAA,CAACT,SAAS,EAAAU,MAAA,CAAAC,MAAA,KACFP,KAAK;IACTD,KAAK,EAAEA,KAAM;IACbI,OAAO,EAAEF,OAAO,CAACC,KAAK,CAACC,OAAO,CAACK,GAAG,CAACC,IAAI,IAAId,OAAO,CAACe,MAAM,CAACD,IAAI,CAAC;EAAE,EACpE,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -0,0 +1 @@
1
+ export * from "./SchedulerRenderer.js";
@@ -0,0 +1,3 @@
1
+ export * from "./SchedulerRenderer.js";
2
+
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./SchedulerRenderer.js\";\n"],"mappings":"AAAA","ignoreList":[]}
@@ -0,0 +1,14 @@
1
+ import type { ICancelItemController, IGetItemController, IListItemsController, IListMoreItemsController, IPublishItemController, ISearchItemsController, ISelectAllItemsController, ISelectItemsController, ISortItemsController, IUnpublishItemController, IUnselectAllItemsController } from "../../Presentation/Scheduler/controllers/index.js";
2
+ export interface ISchedulerControllers {
3
+ scheduleCancelItem: ICancelItemController;
4
+ schedulePublishItem: IPublishItemController;
5
+ scheduleUnpublishItem: IUnpublishItemController;
6
+ listMoreItems: IListMoreItemsController;
7
+ getItem: IGetItemController;
8
+ listItems: IListItemsController;
9
+ selectItems: ISelectItemsController;
10
+ selectAllItems: ISelectAllItemsController;
11
+ sortItems: ISortItemsController;
12
+ unselectAllItems: IUnselectAllItemsController;
13
+ searchItems: ISearchItemsController;
14
+ }
@@ -0,0 +1,3 @@
1
+ export {};
2
+
3
+ //# sourceMappingURL=ISchedulerControllers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sources":["ISchedulerControllers.ts"],"sourcesContent":["import type {\n ICancelItemController,\n IGetItemController,\n IListItemsController,\n IListMoreItemsController,\n IPublishItemController,\n ISearchItemsController,\n ISelectAllItemsController,\n ISelectItemsController,\n ISortItemsController,\n IUnpublishItemController,\n IUnselectAllItemsController\n} from \"~/Presentation/Scheduler/controllers/index.js\";\n\nexport interface ISchedulerControllers {\n scheduleCancelItem: ICancelItemController;\n schedulePublishItem: IPublishItemController;\n scheduleUnpublishItem: IUnpublishItemController;\n listMoreItems: IListMoreItemsController;\n getItem: IGetItemController;\n listItems: IListItemsController;\n selectItems: ISelectItemsController;\n selectAllItems: ISelectAllItemsController;\n sortItems: ISortItemsController;\n unselectAllItems: IUnselectAllItemsController;\n searchItems: ISearchItemsController;\n}\n"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,20 @@
1
+ import type { ColumnSorting } from "@webiny/app-utils";
2
+ import type { SchedulerMetaResponse } from "../../types.js";
3
+ import type { SchedulerItem } from "../../Domain/index.js";
4
+ export interface SchedulerPresenterViewModel {
5
+ items: SchedulerItem[];
6
+ selectedItems: SchedulerItem[];
7
+ allowSelectAll: boolean;
8
+ isSelectedAll: boolean;
9
+ sorting: ColumnSorting[];
10
+ loading: Record<string, boolean>;
11
+ isEmptyView: boolean;
12
+ isSearchView: boolean;
13
+ meta: SchedulerMetaResponse;
14
+ searchQuery: string | undefined;
15
+ searchLabel: string;
16
+ nameColumnId: string;
17
+ }
18
+ export interface ISchedulerPresenter {
19
+ get vm(): SchedulerPresenterViewModel;
20
+ }
@@ -0,0 +1,3 @@
1
+ export {};
2
+
3
+ //# sourceMappingURL=ISchedulerPresenter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sources":["ISchedulerPresenter.ts"],"sourcesContent":["import type { ColumnSorting } from \"@webiny/app-utils\";\nimport type { SchedulerMetaResponse } from \"~/types.js\";\nimport type { SchedulerItem } from \"~/Domain/index.js\";\n\nexport interface SchedulerPresenterViewModel {\n items: SchedulerItem[];\n selectedItems: SchedulerItem[];\n allowSelectAll: boolean;\n isSelectedAll: boolean;\n sorting: ColumnSorting[];\n loading: Record<string, boolean>;\n isEmptyView: boolean;\n isSearchView: boolean;\n meta: SchedulerMetaResponse;\n searchQuery: string | undefined;\n searchLabel: string;\n nameColumnId: string;\n}\n\nexport interface ISchedulerPresenter {\n get vm(): SchedulerPresenterViewModel;\n}\n"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ export type { ISchedulerControllers } from "./ISchedulerControllers.js";
2
+ export type { ISchedulerPresenter, SchedulerPresenterViewModel } from "./ISchedulerPresenter.js";
@@ -0,0 +1,3 @@
1
+ export {};
2
+
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export type { ISchedulerControllers } from \"./ISchedulerControllers.js\";\nexport type { ISchedulerPresenter, SchedulerPresenterViewModel } from \"./ISchedulerPresenter.js\";\n"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ import React from "react";
2
+ export declare const CancelItemAction: () => React.JSX.Element;
@@ -0,0 +1,24 @@
1
+ import React from "react";
2
+ import { ReactComponent as Cancel } from "@material-design-icons/svg/outlined/delete.svg";
3
+ import { useCancelSchedulerItem, useSchedulerItem } from "../../../hooks/index.js";
4
+ import { SchedulerListConfig } from "../../../configs/index.js";
5
+ export const CancelItemAction = () => {
6
+ const {
7
+ item
8
+ } = useSchedulerItem();
9
+ const {
10
+ openDialogCancelSchedulerItem
11
+ } = useCancelSchedulerItem({
12
+ item
13
+ });
14
+ const {
15
+ OptionsMenuItem
16
+ } = SchedulerListConfig.Browser.EntryAction;
17
+ return /*#__PURE__*/React.createElement(OptionsMenuItem, {
18
+ icon: /*#__PURE__*/React.createElement(Cancel, null),
19
+ label: "Cancel",
20
+ onAction: openDialogCancelSchedulerItem
21
+ });
22
+ };
23
+
24
+ //# sourceMappingURL=CancelItem.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","ReactComponent","Cancel","useCancelSchedulerItem","useSchedulerItem","SchedulerListConfig","CancelItemAction","item","openDialogCancelSchedulerItem","OptionsMenuItem","Browser","EntryAction","createElement","icon","label","onAction"],"sources":["CancelItem.tsx"],"sourcesContent":["import React from \"react\";\nimport { ReactComponent as Cancel } from \"@material-design-icons/svg/outlined/delete.svg\";\nimport { useCancelSchedulerItem, useSchedulerItem } from \"~/Presentation/hooks/index.js\";\nimport { SchedulerListConfig } from \"~/Presentation/configs/index.js\";\n\nexport const CancelItemAction = () => {\n const { item } = useSchedulerItem();\n const { openDialogCancelSchedulerItem } = useCancelSchedulerItem({ item });\n const { OptionsMenuItem } = SchedulerListConfig.Browser.EntryAction;\n\n return (\n <OptionsMenuItem\n icon={<Cancel />}\n label={\"Cancel\"}\n onAction={openDialogCancelSchedulerItem}\n />\n );\n};\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,cAAc,IAAIC,MAAM,QAAQ,gDAAgD;AACzF,SAASC,sBAAsB,EAAEC,gBAAgB;AACjD,SAASC,mBAAmB;AAE5B,OAAO,MAAMC,gBAAgB,GAAGA,CAAA,KAAM;EAClC,MAAM;IAAEC;EAAK,CAAC,GAAGH,gBAAgB,CAAC,CAAC;EACnC,MAAM;IAAEI;EAA8B,CAAC,GAAGL,sBAAsB,CAAC;IAAEI;EAAK,CAAC,CAAC;EAC1E,MAAM;IAAEE;EAAgB,CAAC,GAAGJ,mBAAmB,CAACK,OAAO,CAACC,WAAW;EAEnE,oBACIX,KAAA,CAAAY,aAAA,CAACH,eAAe;IACZI,IAAI,eAAEb,KAAA,CAAAY,aAAA,CAACV,MAAM,MAAE,CAAE;IACjBY,KAAK,EAAE,QAAS;IAChBC,QAAQ,EAAEP;EAA8B,CAC3C,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -0,0 +1 @@
1
+ export * from "./CancelItem.js";
@@ -0,0 +1,3 @@
1
+ export * from "./CancelItem.js";
2
+
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./CancelItem.js\";\n"],"mappings":"AAAA","ignoreList":[]}
@@ -0,0 +1 @@
1
+ export * from "./CancelItem/index.js";
@@ -0,0 +1,3 @@
1
+ export * from "./CancelItem/index.js";
2
+
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./CancelItem/index.js\";\n"],"mappings":"AAAA","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ import React from "react";
2
+ export declare const BottomInfoBar: () => React.JSX.Element;
@@ -0,0 +1,20 @@
1
+ import React from "react";
2
+ import { ListMeta } from "./ListMeta.js";
3
+ import { ListStatus } from "./ListStatus.js";
4
+ import { BottomInfoBarInner, BottomInfoBarWrapper } from "./BottomInfoBar.styled.js";
5
+ import { LoadingActions } from "../../../types.js";
6
+ import { useScheduler } from "../../hooks/index.js";
7
+ export const BottomInfoBar = () => {
8
+ const {
9
+ vm
10
+ } = useScheduler();
11
+ return /*#__PURE__*/React.createElement(BottomInfoBarWrapper, null, /*#__PURE__*/React.createElement(BottomInfoBarInner, null, /*#__PURE__*/React.createElement(ListMeta, {
12
+ loading: vm.loading[LoadingActions.list],
13
+ totalCount: vm.meta.totalCount,
14
+ currentCount: vm.items.length
15
+ }), /*#__PURE__*/React.createElement(ListStatus, {
16
+ loading: vm.loading[LoadingActions.listMore]
17
+ })));
18
+ };
19
+
20
+ //# sourceMappingURL=BottomInfoBar.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","ListMeta","ListStatus","BottomInfoBarInner","BottomInfoBarWrapper","LoadingActions","useScheduler","BottomInfoBar","vm","createElement","loading","list","totalCount","meta","currentCount","items","length","listMore"],"sources":["BottomInfoBar.tsx"],"sourcesContent":["import React from \"react\";\nimport { ListMeta } from \"./ListMeta.js\";\nimport { ListStatus } from \"./ListStatus.js\";\nimport { BottomInfoBarInner, BottomInfoBarWrapper } from \"./BottomInfoBar.styled.js\";\nimport { LoadingActions } from \"~/types.js\";\nimport { useScheduler } from \"~/Presentation/hooks/index.js\";\n\nexport const BottomInfoBar = () => {\n const { vm } = useScheduler();\n\n return (\n <BottomInfoBarWrapper>\n <BottomInfoBarInner>\n <ListMeta\n loading={vm.loading[LoadingActions.list]}\n totalCount={vm.meta.totalCount}\n currentCount={vm.items.length}\n />\n <ListStatus loading={vm.loading[LoadingActions.listMore]} />\n </BottomInfoBarInner>\n </BottomInfoBarWrapper>\n );\n};\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,QAAQ;AACjB,SAASC,UAAU;AACnB,SAASC,kBAAkB,EAAEC,oBAAoB;AACjD,SAASC,cAAc;AACvB,SAASC,YAAY;AAErB,OAAO,MAAMC,aAAa,GAAGA,CAAA,KAAM;EAC/B,MAAM;IAAEC;EAAG,CAAC,GAAGF,YAAY,CAAC,CAAC;EAE7B,oBACIN,KAAA,CAAAS,aAAA,CAACL,oBAAoB,qBACjBJ,KAAA,CAAAS,aAAA,CAACN,kBAAkB,qBACfH,KAAA,CAAAS,aAAA,CAACR,QAAQ;IACLS,OAAO,EAAEF,EAAE,CAACE,OAAO,CAACL,cAAc,CAACM,IAAI,CAAE;IACzCC,UAAU,EAAEJ,EAAE,CAACK,IAAI,CAACD,UAAW;IAC/BE,YAAY,EAAEN,EAAE,CAACO,KAAK,CAACC;EAAO,CACjC,CAAC,eACFhB,KAAA,CAAAS,aAAA,CAACP,UAAU;IAACQ,OAAO,EAAEF,EAAE,CAACE,OAAO,CAACL,cAAc,CAACY,QAAQ;EAAE,CAAE,CAC3C,CACF,CAAC;AAE/B,CAAC","ignoreList":[]}
@@ -0,0 +1,20 @@
1
+ export declare const BottomInfoBarWrapper: import("@emotion/styled").StyledComponent<{
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
4
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
5
+ export declare const BottomInfoBarInner: import("@emotion/styled").StyledComponent<{
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
8
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
9
+ export declare const StatusWrapper: import("@emotion/styled").StyledComponent<{
10
+ theme?: import("@emotion/react").Theme;
11
+ as?: React.ElementType;
12
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
13
+ export declare const CircularProgressHolder: import("@emotion/styled").StyledComponent<{
14
+ theme?: import("@emotion/react").Theme;
15
+ as?: React.ElementType;
16
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
17
+ export declare const UploadingLabel: import("@emotion/styled").StyledComponent<{
18
+ theme?: import("@emotion/react").Theme;
19
+ as?: React.ElementType;
20
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -0,0 +1,69 @@
1
+ import _styled from "@emotion/styled/base";
2
+ function _EMOTION_STRINGIFIED_CSS_ERROR__() { return "You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop)."; }
3
+ export const BottomInfoBarWrapper = /*#__PURE__*/_styled("div", process.env.NODE_ENV === "production" ? {
4
+ target: "e1ylmnml4"
5
+ } : {
6
+ target: "e1ylmnml4",
7
+ label: "BottomInfoBarWrapper"
8
+ })(process.env.NODE_ENV === "production" ? {
9
+ name: "12my7vq",
10
+ styles: "font-size:0.8rem;position:sticky;bottom:0;height:30px;color:var(--mdc-theme-text-secondary-on-background);border-top:1px solid var(--mdc-theme-on-background);background:var(--mdc-theme-surface);width:100%;transform:translateZ(0);overflow:hidden;display:flex;align-items:center;z-index:1"
11
+ } : {
12
+ name: "12my7vq",
13
+ styles: "font-size:0.8rem;position:sticky;bottom:0;height:30px;color:var(--mdc-theme-text-secondary-on-background);border-top:1px solid var(--mdc-theme-on-background);background:var(--mdc-theme-surface);width:100%;transform:translateZ(0);overflow:hidden;display:flex;align-items:center;z-index:1/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFaUQiLCJmaWxlIjoiQm90dG9tSW5mb0Jhci5zdHlsZWQudHN4Iiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHN0eWxlZCBmcm9tIFwiQGVtb3Rpb24vc3R5bGVkXCI7XG5cbmV4cG9ydCBjb25zdCBCb3R0b21JbmZvQmFyV3JhcHBlciA9IHN0eWxlZChcImRpdlwiKWBcbiAgICBmb250LXNpemU6IDAuOHJlbTtcbiAgICBwb3NpdGlvbjogc3RpY2t5O1xuICAgIGJvdHRvbTogMDtcbiAgICBoZWlnaHQ6IDMwcHg7XG4gICAgY29sb3I6IHZhcigtLW1kYy10aGVtZS10ZXh0LXNlY29uZGFyeS1vbi1iYWNrZ3JvdW5kKTtcbiAgICBib3JkZXItdG9wOiAxcHggc29saWQgdmFyKC0tbWRjLXRoZW1lLW9uLWJhY2tncm91bmQpO1xuICAgIGJhY2tncm91bmQ6IHZhcigtLW1kYy10aGVtZS1zdXJmYWNlKTtcbiAgICB3aWR0aDogMTAwJTtcbiAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZVooMCk7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgei1pbmRleDogMTtcbmA7XG5cbmV4cG9ydCBjb25zdCBCb3R0b21JbmZvQmFySW5uZXIgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgcGFkZGluZzogMCAxMHB4O1xuICAgIHdpZHRoOiAxMDAlO1xuYDtcblxuZXhwb3J0IGNvbnN0IFN0YXR1c1dyYXBwZXIgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgY29sb3I6IHZhcigtLW1kYy10aGVtZS1wcmltYXJ5KTtcbiAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgcmlnaHQ6IDA7XG4gICAgYm90dG9tOiAxMHB4O1xuICAgIG1hcmdpbi1yaWdodDogMTBweDtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgPiBkaXYge1xuICAgICAgICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gICAgfVxuYDtcblxuZXhwb3J0IGNvbnN0IENpcmN1bGFyUHJvZ3Jlc3NIb2xkZXIgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xuICAgIGhlaWdodDogMTJweDtcbiAgICB3aWR0aDogMTJweDtcbmA7XG5cbmV4cG9ydCBjb25zdCBVcGxvYWRpbmdMYWJlbCA9IHN0eWxlZChcImRpdlwiKWBcbiAgICBtYXJnaW4tcmlnaHQ6IDVweDtcbmA7XG4iXX0= */",
14
+ toString: _EMOTION_STRINGIFIED_CSS_ERROR__
15
+ });
16
+ export const BottomInfoBarInner = /*#__PURE__*/_styled("div", process.env.NODE_ENV === "production" ? {
17
+ target: "e1ylmnml3"
18
+ } : {
19
+ target: "e1ylmnml3",
20
+ label: "BottomInfoBarInner"
21
+ })(process.env.NODE_ENV === "production" ? {
22
+ name: "owe4de",
23
+ styles: "padding:0 10px;width:100%"
24
+ } : {
25
+ name: "owe4de",
26
+ styles: "padding:0 10px;width:100%/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFrQitDIiwiZmlsZSI6IkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSBcIkBlbW90aW9uL3N0eWxlZFwiO1xuXG5leHBvcnQgY29uc3QgQm90dG9tSW5mb0JhcldyYXBwZXIgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgZm9udC1zaXplOiAwLjhyZW07XG4gICAgcG9zaXRpb246IHN0aWNreTtcbiAgICBib3R0b206IDA7XG4gICAgaGVpZ2h0OiAzMHB4O1xuICAgIGNvbG9yOiB2YXIoLS1tZGMtdGhlbWUtdGV4dC1zZWNvbmRhcnktb24tYmFja2dyb3VuZCk7XG4gICAgYm9yZGVyLXRvcDogMXB4IHNvbGlkIHZhcigtLW1kYy10aGVtZS1vbi1iYWNrZ3JvdW5kKTtcbiAgICBiYWNrZ3JvdW5kOiB2YXIoLS1tZGMtdGhlbWUtc3VyZmFjZSk7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVaKDApO1xuICAgIG92ZXJmbG93OiBoaWRkZW47XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgIHotaW5kZXg6IDE7XG5gO1xuXG5leHBvcnQgY29uc3QgQm90dG9tSW5mb0JhcklubmVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIHBhZGRpbmc6IDAgMTBweDtcbiAgICB3aWR0aDogMTAwJTtcbmA7XG5cbmV4cG9ydCBjb25zdCBTdGF0dXNXcmFwcGVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIGNvbG9yOiB2YXIoLS1tZGMtdGhlbWUtcHJpbWFyeSk7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHJpZ2h0OiAwO1xuICAgIGJvdHRvbTogMTBweDtcbiAgICBtYXJnaW4tcmlnaHQ6IDEwcHg7XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgID4gZGl2IHtcbiAgICAgICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIH1cbmA7XG5cbmV4cG9ydCBjb25zdCBDaXJjdWxhclByb2dyZXNzSG9sZGVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICBoZWlnaHQ6IDEycHg7XG4gICAgd2lkdGg6IDEycHg7XG5gO1xuXG5leHBvcnQgY29uc3QgVXBsb2FkaW5nTGFiZWwgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgbWFyZ2luLXJpZ2h0OiA1cHg7XG5gO1xuIl19 */",
27
+ toString: _EMOTION_STRINGIFIED_CSS_ERROR__
28
+ });
29
+ export const StatusWrapper = /*#__PURE__*/_styled("div", process.env.NODE_ENV === "production" ? {
30
+ target: "e1ylmnml2"
31
+ } : {
32
+ target: "e1ylmnml2",
33
+ label: "StatusWrapper"
34
+ })(process.env.NODE_ENV === "production" ? {
35
+ name: "pjg2fa",
36
+ styles: "color:var(--mdc-theme-primary);position:absolute;right:0;bottom:10px;margin-right:10px;display:flex;align-items:center;>div{display:inline-block;}"
37
+ } : {
38
+ name: "pjg2fa",
39
+ styles: "color:var(--mdc-theme-primary);position:absolute;right:0;bottom:10px;margin-right:10px;display:flex;align-items:center;>div{display:inline-block;}/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUF1QjBDIiwiZmlsZSI6IkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSBcIkBlbW90aW9uL3N0eWxlZFwiO1xuXG5leHBvcnQgY29uc3QgQm90dG9tSW5mb0JhcldyYXBwZXIgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgZm9udC1zaXplOiAwLjhyZW07XG4gICAgcG9zaXRpb246IHN0aWNreTtcbiAgICBib3R0b206IDA7XG4gICAgaGVpZ2h0OiAzMHB4O1xuICAgIGNvbG9yOiB2YXIoLS1tZGMtdGhlbWUtdGV4dC1zZWNvbmRhcnktb24tYmFja2dyb3VuZCk7XG4gICAgYm9yZGVyLXRvcDogMXB4IHNvbGlkIHZhcigtLW1kYy10aGVtZS1vbi1iYWNrZ3JvdW5kKTtcbiAgICBiYWNrZ3JvdW5kOiB2YXIoLS1tZGMtdGhlbWUtc3VyZmFjZSk7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVaKDApO1xuICAgIG92ZXJmbG93OiBoaWRkZW47XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgIHotaW5kZXg6IDE7XG5gO1xuXG5leHBvcnQgY29uc3QgQm90dG9tSW5mb0JhcklubmVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIHBhZGRpbmc6IDAgMTBweDtcbiAgICB3aWR0aDogMTAwJTtcbmA7XG5cbmV4cG9ydCBjb25zdCBTdGF0dXNXcmFwcGVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIGNvbG9yOiB2YXIoLS1tZGMtdGhlbWUtcHJpbWFyeSk7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHJpZ2h0OiAwO1xuICAgIGJvdHRvbTogMTBweDtcbiAgICBtYXJnaW4tcmlnaHQ6IDEwcHg7XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgID4gZGl2IHtcbiAgICAgICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIH1cbmA7XG5cbmV4cG9ydCBjb25zdCBDaXJjdWxhclByb2dyZXNzSG9sZGVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICBoZWlnaHQ6IDEycHg7XG4gICAgd2lkdGg6IDEycHg7XG5gO1xuXG5leHBvcnQgY29uc3QgVXBsb2FkaW5nTGFiZWwgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgbWFyZ2luLXJpZ2h0OiA1cHg7XG5gO1xuIl19 */",
40
+ toString: _EMOTION_STRINGIFIED_CSS_ERROR__
41
+ });
42
+ export const CircularProgressHolder = /*#__PURE__*/_styled("div", process.env.NODE_ENV === "production" ? {
43
+ target: "e1ylmnml1"
44
+ } : {
45
+ target: "e1ylmnml1",
46
+ label: "CircularProgressHolder"
47
+ })(process.env.NODE_ENV === "production" ? {
48
+ name: "n39s9v",
49
+ styles: "position:relative;height:12px;width:12px"
50
+ } : {
51
+ name: "n39s9v",
52
+ styles: "position:relative;height:12px;width:12px/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFvQ21EIiwiZmlsZSI6IkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSBcIkBlbW90aW9uL3N0eWxlZFwiO1xuXG5leHBvcnQgY29uc3QgQm90dG9tSW5mb0JhcldyYXBwZXIgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgZm9udC1zaXplOiAwLjhyZW07XG4gICAgcG9zaXRpb246IHN0aWNreTtcbiAgICBib3R0b206IDA7XG4gICAgaGVpZ2h0OiAzMHB4O1xuICAgIGNvbG9yOiB2YXIoLS1tZGMtdGhlbWUtdGV4dC1zZWNvbmRhcnktb24tYmFja2dyb3VuZCk7XG4gICAgYm9yZGVyLXRvcDogMXB4IHNvbGlkIHZhcigtLW1kYy10aGVtZS1vbi1iYWNrZ3JvdW5kKTtcbiAgICBiYWNrZ3JvdW5kOiB2YXIoLS1tZGMtdGhlbWUtc3VyZmFjZSk7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVaKDApO1xuICAgIG92ZXJmbG93OiBoaWRkZW47XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgIHotaW5kZXg6IDE7XG5gO1xuXG5leHBvcnQgY29uc3QgQm90dG9tSW5mb0JhcklubmVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIHBhZGRpbmc6IDAgMTBweDtcbiAgICB3aWR0aDogMTAwJTtcbmA7XG5cbmV4cG9ydCBjb25zdCBTdGF0dXNXcmFwcGVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIGNvbG9yOiB2YXIoLS1tZGMtdGhlbWUtcHJpbWFyeSk7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHJpZ2h0OiAwO1xuICAgIGJvdHRvbTogMTBweDtcbiAgICBtYXJnaW4tcmlnaHQ6IDEwcHg7XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgID4gZGl2IHtcbiAgICAgICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIH1cbmA7XG5cbmV4cG9ydCBjb25zdCBDaXJjdWxhclByb2dyZXNzSG9sZGVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICBoZWlnaHQ6IDEycHg7XG4gICAgd2lkdGg6IDEycHg7XG5gO1xuXG5leHBvcnQgY29uc3QgVXBsb2FkaW5nTGFiZWwgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgbWFyZ2luLXJpZ2h0OiA1cHg7XG5gO1xuIl19 */",
53
+ toString: _EMOTION_STRINGIFIED_CSS_ERROR__
54
+ });
55
+ export const UploadingLabel = /*#__PURE__*/_styled("div", process.env.NODE_ENV === "production" ? {
56
+ target: "e1ylmnml0"
57
+ } : {
58
+ target: "e1ylmnml0",
59
+ label: "UploadingLabel"
60
+ })(process.env.NODE_ENV === "production" ? {
61
+ name: "1693thf",
62
+ styles: "margin-right:5px"
63
+ } : {
64
+ name: "1693thf",
65
+ styles: "margin-right:5px/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUEwQzJDIiwiZmlsZSI6IkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSBcIkBlbW90aW9uL3N0eWxlZFwiO1xuXG5leHBvcnQgY29uc3QgQm90dG9tSW5mb0JhcldyYXBwZXIgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgZm9udC1zaXplOiAwLjhyZW07XG4gICAgcG9zaXRpb246IHN0aWNreTtcbiAgICBib3R0b206IDA7XG4gICAgaGVpZ2h0OiAzMHB4O1xuICAgIGNvbG9yOiB2YXIoLS1tZGMtdGhlbWUtdGV4dC1zZWNvbmRhcnktb24tYmFja2dyb3VuZCk7XG4gICAgYm9yZGVyLXRvcDogMXB4IHNvbGlkIHZhcigtLW1kYy10aGVtZS1vbi1iYWNrZ3JvdW5kKTtcbiAgICBiYWNrZ3JvdW5kOiB2YXIoLS1tZGMtdGhlbWUtc3VyZmFjZSk7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVaKDApO1xuICAgIG92ZXJmbG93OiBoaWRkZW47XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgIHotaW5kZXg6IDE7XG5gO1xuXG5leHBvcnQgY29uc3QgQm90dG9tSW5mb0JhcklubmVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIHBhZGRpbmc6IDAgMTBweDtcbiAgICB3aWR0aDogMTAwJTtcbmA7XG5cbmV4cG9ydCBjb25zdCBTdGF0dXNXcmFwcGVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIGNvbG9yOiB2YXIoLS1tZGMtdGhlbWUtcHJpbWFyeSk7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHJpZ2h0OiAwO1xuICAgIGJvdHRvbTogMTBweDtcbiAgICBtYXJnaW4tcmlnaHQ6IDEwcHg7XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgID4gZGl2IHtcbiAgICAgICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIH1cbmA7XG5cbmV4cG9ydCBjb25zdCBDaXJjdWxhclByb2dyZXNzSG9sZGVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICBoZWlnaHQ6IDEycHg7XG4gICAgd2lkdGg6IDEycHg7XG5gO1xuXG5leHBvcnQgY29uc3QgVXBsb2FkaW5nTGFiZWwgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgbWFyZ2luLXJpZ2h0OiA1cHg7XG5gO1xuIl19 */",
66
+ toString: _EMOTION_STRINGIFIED_CSS_ERROR__
67
+ });
68
+
69
+ //# sourceMappingURL=BottomInfoBar.styled.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["BottomInfoBarWrapper","_styled","process","env","NODE_ENV","target","label","name","styles","toString","_EMOTION_STRINGIFIED_CSS_ERROR__","BottomInfoBarInner","StatusWrapper","CircularProgressHolder","UploadingLabel"],"sources":["BottomInfoBar.styled.tsx"],"sourcesContent":["import styled from \"@emotion/styled\";\n\nexport const BottomInfoBarWrapper = styled(\"div\")`\n font-size: 0.8rem;\n position: sticky;\n bottom: 0;\n height: 30px;\n color: var(--mdc-theme-text-secondary-on-background);\n border-top: 1px solid var(--mdc-theme-on-background);\n background: var(--mdc-theme-surface);\n width: 100%;\n transform: translateZ(0);\n overflow: hidden;\n display: flex;\n align-items: center;\n z-index: 1;\n`;\n\nexport const BottomInfoBarInner = styled(\"div\")`\n padding: 0 10px;\n width: 100%;\n`;\n\nexport const StatusWrapper = styled(\"div\")`\n color: var(--mdc-theme-primary);\n position: absolute;\n right: 0;\n bottom: 10px;\n margin-right: 10px;\n display: flex;\n align-items: center;\n > div {\n display: inline-block;\n }\n`;\n\nexport const CircularProgressHolder = styled(\"div\")`\n position: relative;\n height: 12px;\n width: 12px;\n`;\n\nexport const UploadingLabel = styled(\"div\")`\n margin-right: 5px;\n`;\n"],"mappings":";;AAEA,OAAO,MAAMA,oBAAoB,gBAAGC,OAAA,CAAO,KAAK,EAAAC,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAC,MAAA;AAAA;EAAAA,MAAA;EAAAC,KAAA;AAAA,EAAC,CAAAJ,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAG,IAAA;EAAAC,MAAA;AAAA;EAAAD,IAAA;EAAAC,MAAA;EAAAC,QAAA,EAAAC;AAAA,EAchD;AAED,OAAO,MAAMC,kBAAkB,gBAAGV,OAAA,CAAO,KAAK,EAAAC,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAC,MAAA;AAAA;EAAAA,MAAA;EAAAC,KAAA;AAAA,EAAC,CAAAJ,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAG,IAAA;EAAAC,MAAA;AAAA;EAAAD,IAAA;EAAAC,MAAA;EAAAC,QAAA,EAAAC;AAAA,EAG9C;AAED,OAAO,MAAME,aAAa,gBAAGX,OAAA,CAAO,KAAK,EAAAC,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAC,MAAA;AAAA;EAAAA,MAAA;EAAAC,KAAA;AAAA,EAAC,CAAAJ,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAG,IAAA;EAAAC,MAAA;AAAA;EAAAD,IAAA;EAAAC,MAAA;EAAAC,QAAA,EAAAC;AAAA,EAWzC;AAED,OAAO,MAAMG,sBAAsB,gBAAGZ,OAAA,CAAO,KAAK,EAAAC,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAC,MAAA;AAAA;EAAAA,MAAA;EAAAC,KAAA;AAAA,EAAC,CAAAJ,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAG,IAAA;EAAAC,MAAA;AAAA;EAAAD,IAAA;EAAAC,MAAA;EAAAC,QAAA,EAAAC;AAAA,EAIlD;AAED,OAAO,MAAMI,cAAc,gBAAGb,OAAA,CAAO,KAAK,EAAAC,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAC,MAAA;AAAA;EAAAA,MAAA;EAAAC,KAAA;AAAA,EAAC,CAAAJ,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAG,IAAA;EAAAC,MAAA;AAAA;EAAAD,IAAA;EAAAC,MAAA;EAAAC,QAAA,EAAAC;AAAA,EAE1C","ignoreList":[]}
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ export interface ListMetaProps {
3
+ loading: boolean;
4
+ currentCount: number;
5
+ totalCount: number;
6
+ }
7
+ export declare const ListMeta: (props: ListMetaProps) => React.JSX.Element | null;
@@ -0,0 +1,12 @@
1
+ import React, { useCallback } from "react";
2
+ export const ListMeta = props => {
3
+ const getLabel = useCallback((count = 0) => {
4
+ return `${count} ${count === 1 ? "item" : "items"}`;
5
+ }, []);
6
+ if (props.loading) {
7
+ return null;
8
+ }
9
+ return /*#__PURE__*/React.createElement("span", null, `Showing ${props.currentCount} out of ${getLabel(props.totalCount)}.`);
10
+ };
11
+
12
+ //# sourceMappingURL=ListMeta.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","useCallback","ListMeta","props","getLabel","count","loading","createElement","currentCount","totalCount"],"sources":["ListMeta.tsx"],"sourcesContent":["import React, { useCallback } from \"react\";\n\nexport interface ListMetaProps {\n loading: boolean;\n currentCount: number;\n totalCount: number;\n}\n\nexport const ListMeta = (props: ListMetaProps) => {\n const getLabel = useCallback((count = 0): string => {\n return `${count} ${count === 1 ? \"item\" : \"items\"}`;\n }, []);\n\n if (props.loading) {\n return null;\n }\n\n return <span>{`Showing ${props.currentCount} out of ${getLabel(props.totalCount)}.`}</span>;\n};\n"],"mappings":"AAAA,OAAOA,KAAK,IAAIC,WAAW,QAAQ,OAAO;AAQ1C,OAAO,MAAMC,QAAQ,GAAIC,KAAoB,IAAK;EAC9C,MAAMC,QAAQ,GAAGH,WAAW,CAAC,CAACI,KAAK,GAAG,CAAC,KAAa;IAChD,OAAO,GAAGA,KAAK,IAAIA,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,OAAO,EAAE;EACvD,CAAC,EAAE,EAAE,CAAC;EAEN,IAAIF,KAAK,CAACG,OAAO,EAAE;IACf,OAAO,IAAI;EACf;EAEA,oBAAON,KAAA,CAAAO,aAAA,eAAO,WAAWJ,KAAK,CAACK,YAAY,WAAWJ,QAAQ,CAACD,KAAK,CAACM,UAAU,CAAC,GAAU,CAAC;AAC/F,CAAC","ignoreList":[]}
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ export interface ListStatusProps {
3
+ loading: boolean;
4
+ }
5
+ export declare const ListStatus: ({ loading }: ListStatusProps) => React.JSX.Element | null;
@@ -0,0 +1,16 @@
1
+ import React from "react";
2
+ import { CircularProgress } from "@webiny/ui/Progress/index.js";
3
+ import { CircularProgressHolder, StatusWrapper, UploadingLabel } from "./BottomInfoBar.styled.js";
4
+ export const ListStatus = ({
5
+ loading
6
+ }) => {
7
+ if (!loading) {
8
+ return null;
9
+ }
10
+ return /*#__PURE__*/React.createElement(StatusWrapper, null, /*#__PURE__*/React.createElement(UploadingLabel, null, "Loading more items..."), /*#__PURE__*/React.createElement(CircularProgressHolder, null, /*#__PURE__*/React.createElement(CircularProgress, {
11
+ size: 10,
12
+ spinnerWidth: 1
13
+ })));
14
+ };
15
+
16
+ //# sourceMappingURL=ListStatus.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","CircularProgress","CircularProgressHolder","StatusWrapper","UploadingLabel","ListStatus","loading","createElement","size","spinnerWidth"],"sources":["ListStatus.tsx"],"sourcesContent":["import React from \"react\";\nimport { CircularProgress } from \"@webiny/ui/Progress/index.js\";\nimport { CircularProgressHolder, StatusWrapper, UploadingLabel } from \"./BottomInfoBar.styled.js\";\n\nexport interface ListStatusProps {\n loading: boolean;\n}\n\nexport const ListStatus = ({ loading }: ListStatusProps) => {\n if (!loading) {\n return null;\n }\n\n return (\n <StatusWrapper>\n <UploadingLabel>{\"Loading more items...\"}</UploadingLabel>\n <CircularProgressHolder>\n <CircularProgress size={10} spinnerWidth={1} />\n </CircularProgressHolder>\n </StatusWrapper>\n );\n};\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,gBAAgB,QAAQ,8BAA8B;AAC/D,SAASC,sBAAsB,EAAEC,aAAa,EAAEC,cAAc;AAM9D,OAAO,MAAMC,UAAU,GAAGA,CAAC;EAAEC;AAAyB,CAAC,KAAK;EACxD,IAAI,CAACA,OAAO,EAAE;IACV,OAAO,IAAI;EACf;EAEA,oBACIN,KAAA,CAAAO,aAAA,CAACJ,aAAa,qBACVH,KAAA,CAAAO,aAAA,CAACH,cAAc,QAAE,uBAAwC,CAAC,eAC1DJ,KAAA,CAAAO,aAAA,CAACL,sBAAsB,qBACnBF,KAAA,CAAAO,aAAA,CAACN,gBAAgB;IAACO,IAAI,EAAE,EAAG;IAACC,YAAY,EAAE;EAAE,CAAE,CAC1B,CACb,CAAC;AAExB,CAAC","ignoreList":[]}
@@ -0,0 +1 @@
1
+ export * from "./BottomInfoBar.js";
@@ -0,0 +1,3 @@
1
+ export * from "./BottomInfoBar.js";
2
+
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sources":["index.tsx"],"sourcesContent":["export * from \"./BottomInfoBar.js\";\n"],"mappings":"AAAA","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ import React from "react";
2
+ export declare const CellActions: () => React.JSX.Element;
@@ -0,0 +1,23 @@
1
+ import React from "react";
2
+ import { OptionsMenu } from "@webiny/app-admin";
3
+ import { SchedulerListConfig, useSchedulerListConfig } from "../../../configs/index.js";
4
+ import { SchedulerItemProvider } from "../../../hooks/index.js";
5
+ export const CellActions = () => {
6
+ const {
7
+ useTableRow
8
+ } = SchedulerListConfig.Browser.Table.Column;
9
+ const {
10
+ row
11
+ } = useTableRow();
12
+ const {
13
+ browser
14
+ } = useSchedulerListConfig();
15
+ return /*#__PURE__*/React.createElement(SchedulerItemProvider, {
16
+ item: row.data
17
+ }, /*#__PURE__*/React.createElement(OptionsMenu, {
18
+ actions: browser.entryActions,
19
+ "data-testid": "table.row.scheduler.entry.menu-action"
20
+ }));
21
+ };
22
+
23
+ //# sourceMappingURL=CellActions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","OptionsMenu","SchedulerListConfig","useSchedulerListConfig","SchedulerItemProvider","CellActions","useTableRow","Browser","Table","Column","row","browser","createElement","item","data","actions","entryActions"],"sources":["CellActions.tsx"],"sourcesContent":["import React from \"react\";\nimport { OptionsMenu } from \"@webiny/app-admin\";\nimport { SchedulerListConfig, useSchedulerListConfig } from \"~/Presentation/configs/index.js\";\nimport { SchedulerItemProvider } from \"~/Presentation/hooks/index.js\";\n\nexport const CellActions = () => {\n const { useTableRow } = SchedulerListConfig.Browser.Table.Column;\n const { row } = useTableRow();\n const { browser } = useSchedulerListConfig();\n\n return (\n <SchedulerItemProvider item={row.data}>\n <OptionsMenu\n actions={browser.entryActions}\n data-testid={\"table.row.scheduler.entry.menu-action\"}\n />\n </SchedulerItemProvider>\n );\n};\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,WAAW,QAAQ,mBAAmB;AAC/C,SAASC,mBAAmB,EAAEC,sBAAsB;AACpD,SAASC,qBAAqB;AAE9B,OAAO,MAAMC,WAAW,GAAGA,CAAA,KAAM;EAC7B,MAAM;IAAEC;EAAY,CAAC,GAAGJ,mBAAmB,CAACK,OAAO,CAACC,KAAK,CAACC,MAAM;EAChE,MAAM;IAAEC;EAAI,CAAC,GAAGJ,WAAW,CAAC,CAAC;EAC7B,MAAM;IAAEK;EAAQ,CAAC,GAAGR,sBAAsB,CAAC,CAAC;EAE5C,oBACIH,KAAA,CAAAY,aAAA,CAACR,qBAAqB;IAACS,IAAI,EAAEH,GAAG,CAACI;EAAK,gBAClCd,KAAA,CAAAY,aAAA,CAACX,WAAW;IACRc,OAAO,EAAEJ,OAAO,CAACK,YAAa;IAC9B,eAAa;EAAwC,CACxD,CACkB,CAAC;AAEhC,CAAC","ignoreList":[]}
@@ -0,0 +1 @@
1
+ export * from "./CellActions.js";
@@ -0,0 +1,3 @@
1
+ export * from "./CellActions.js";
2
+
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./CellActions.js\";\n"],"mappings":"AAAA","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ import React from "react";
2
+ export declare const CellRevision: () => React.JSX.Element;
@@ -0,0 +1,20 @@
1
+ import React from "react";
2
+ import { RowText, RowTitle } from "./CellRevision.styled.js";
3
+ import { SchedulerListConfig } from "../../../configs/index.js";
4
+ import { parseIdentifier } from "@webiny/utils/parseIdentifier.js";
5
+ export const CellRevision = () => {
6
+ const {
7
+ useTableRow
8
+ } = SchedulerListConfig.Browser.Table.Column;
9
+ const {
10
+ row
11
+ } = useTableRow();
12
+ const {
13
+ version
14
+ } = parseIdentifier(row.data.targetId);
15
+ return /*#__PURE__*/React.createElement(RowTitle, null, /*#__PURE__*/React.createElement(RowText, {
16
+ use: "subtitle2"
17
+ }, version));
18
+ };
19
+
20
+ //# sourceMappingURL=CellRevision.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","RowText","RowTitle","SchedulerListConfig","parseIdentifier","CellRevision","useTableRow","Browser","Table","Column","row","version","data","targetId","createElement","use"],"sources":["CellRevision.tsx"],"sourcesContent":["import React from \"react\";\nimport { RowText, RowTitle } from \"./CellRevision.styled.js\";\nimport { SchedulerListConfig } from \"~/Presentation/configs/index.js\";\nimport { parseIdentifier } from \"@webiny/utils/parseIdentifier.js\";\n\nexport const CellRevision = () => {\n const { useTableRow } = SchedulerListConfig.Browser.Table.Column;\n const { row } = useTableRow();\n\n const { version } = parseIdentifier(row.data.targetId);\n return (\n <RowTitle>\n <RowText use={\"subtitle2\"}>{version}</RowText>\n </RowTitle>\n );\n};\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,OAAO,EAAEC,QAAQ;AAC1B,SAASC,mBAAmB;AAC5B,SAASC,eAAe,QAAQ,kCAAkC;AAElE,OAAO,MAAMC,YAAY,GAAGA,CAAA,KAAM;EAC9B,MAAM;IAAEC;EAAY,CAAC,GAAGH,mBAAmB,CAACI,OAAO,CAACC,KAAK,CAACC,MAAM;EAChE,MAAM;IAAEC;EAAI,CAAC,GAAGJ,WAAW,CAAC,CAAC;EAE7B,MAAM;IAAEK;EAAQ,CAAC,GAAGP,eAAe,CAACM,GAAG,CAACE,IAAI,CAACC,QAAQ,CAAC;EACtD,oBACIb,KAAA,CAAAc,aAAA,CAACZ,QAAQ,qBACLF,KAAA,CAAAc,aAAA,CAACb,OAAO;IAACc,GAAG,EAAE;EAAY,GAAEJ,OAAiB,CACvC,CAAC;AAEnB,CAAC","ignoreList":[]}
@@ -0,0 +1,11 @@
1
+ export declare const RowTitle: import("@emotion/styled").StyledComponent<{
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
4
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
5
+ export declare const RowIcon: import("@emotion/styled").StyledComponent<{
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
8
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
9
+ export declare const RowText: import("@emotion/styled").StyledComponent<import("@webiny/ui/Typography/Typography").TypographyProps & {
10
+ theme?: import("@emotion/react").Theme;
11
+ }, {}, {}>;