@webiny/app-scheduler 6.3.0 → 6.4.0-beta.1
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.
- package/Domain/Models/SchedulerItem/SchedulerItem.js +15 -14
- package/Domain/Models/SchedulerItem/SchedulerItem.js.map +1 -1
- package/Domain/Models/SchedulerItem/index.js +0 -2
- package/Domain/Models/index.js +0 -2
- package/Domain/Repositories/SchedulerItems/ISchedulerItemsRepository.js +0 -3
- package/Domain/Repositories/SchedulerItems/SchedulerItemsRepository.js +107 -116
- package/Domain/Repositories/SchedulerItems/SchedulerItemsRepository.js.map +1 -1
- package/Domain/Repositories/SchedulerItems/SchedulerItemsRepositoryFactory.js +13 -12
- package/Domain/Repositories/SchedulerItems/SchedulerItemsRepositoryFactory.js.map +1 -1
- package/Domain/Repositories/SchedulerItems/SchedulerItemsRepositoryWithLoading.js +34 -33
- package/Domain/Repositories/SchedulerItems/SchedulerItemsRepositoryWithLoading.js.map +1 -1
- package/Domain/Repositories/SchedulerItems/index.js +0 -2
- package/Domain/Repositories/Search/ISearchRepository.js +0 -3
- package/Domain/Repositories/Search/SearchRepository.js +12 -11
- package/Domain/Repositories/Search/SearchRepository.js.map +1 -1
- package/Domain/Repositories/Search/SearchRepositoryFactory.js +13 -12
- package/Domain/Repositories/Search/SearchRepositoryFactory.js.map +1 -1
- package/Domain/Repositories/Search/index.js +0 -2
- package/Domain/Repositories/SelectedItems/ISelectedItemsRepository.js +0 -3
- package/Domain/Repositories/SelectedItems/SelectedItemsRepository.js +24 -23
- package/Domain/Repositories/SelectedItems/SelectedItemsRepository.js.map +1 -1
- package/Domain/Repositories/SelectedItems/SelectedItemsRepositoryFactory.js +13 -12
- package/Domain/Repositories/SelectedItems/SelectedItemsRepositoryFactory.js.map +1 -1
- package/Domain/Repositories/SelectedItems/index.js +0 -2
- package/Domain/Repositories/Sorting/SortingRepositoryWithDefaults.js +16 -17
- package/Domain/Repositories/Sorting/SortingRepositoryWithDefaults.js.map +1 -1
- package/Domain/Repositories/Sorting/index.js +0 -2
- package/Domain/Repositories/index.js +0 -2
- package/Domain/index.js +0 -2
- package/Gateways/SchedulerCancelGraphQLGateway.js +23 -29
- package/Gateways/SchedulerCancelGraphQLGateway.js.map +1 -1
- package/Gateways/SchedulerGetGraphQLGateway.js +41 -45
- package/Gateways/SchedulerGetGraphQLGateway.js.map +1 -1
- package/Gateways/SchedulerListGraphQLGateway.js +42 -48
- package/Gateways/SchedulerListGraphQLGateway.js.map +1 -1
- package/Gateways/SchedulerPublishGraphQLGateway.js +31 -39
- package/Gateways/SchedulerPublishGraphQLGateway.js.map +1 -1
- package/Gateways/SchedulerUnpublishGraphQLGateway.js +35 -41
- package/Gateways/SchedulerUnpublishGraphQLGateway.js.map +1 -1
- package/Gateways/abstractions/CancelScheduledActionGateway.js +0 -3
- package/Gateways/abstractions/GetScheduledActionGateway.js +0 -3
- package/Gateways/abstractions/ListScheduledActionsGateway.js +0 -3
- package/Gateways/abstractions/SchedulePublishActionGateway.js +0 -3
- package/Gateways/abstractions/ScheduleUnpublishActionGateway.js +0 -3
- package/Gateways/graphql/fields.js +2 -3
- package/Gateways/graphql/fields.js.map +1 -1
- package/Gateways/index.js +0 -3
- package/Gateways/schema/schedulerEntry.js +13 -16
- package/Gateways/schema/schedulerEntry.js.map +1 -1
- package/Presentation/Scheduler/Scheduler.js +69 -58
- package/Presentation/Scheduler/Scheduler.js.map +1 -1
- package/Presentation/Scheduler/SchedulerControllers.js +49 -67
- package/Presentation/Scheduler/SchedulerControllers.js.map +1 -1
- package/Presentation/Scheduler/SchedulerPresenter.js +39 -38
- package/Presentation/Scheduler/SchedulerPresenter.js.map +1 -1
- package/Presentation/Scheduler/controllers/CancelItem/CancelItemController.js +9 -8
- package/Presentation/Scheduler/controllers/CancelItem/CancelItemController.js.map +1 -1
- package/Presentation/Scheduler/controllers/CancelItem/ICancelItemController.js +0 -3
- package/Presentation/Scheduler/controllers/CancelItem/index.js +0 -2
- package/Presentation/Scheduler/controllers/GetItem/GetItemController.js +9 -8
- package/Presentation/Scheduler/controllers/GetItem/GetItemController.js.map +1 -1
- package/Presentation/Scheduler/controllers/GetItem/IGetItemController.js +0 -3
- package/Presentation/Scheduler/controllers/GetItem/index.js +0 -2
- package/Presentation/Scheduler/controllers/ListItems/IListItemsController.js +0 -3
- package/Presentation/Scheduler/controllers/ListItems/ListItemsController.js +9 -8
- package/Presentation/Scheduler/controllers/ListItems/ListItemsController.js.map +1 -1
- package/Presentation/Scheduler/controllers/ListItems/index.js +0 -2
- package/Presentation/Scheduler/controllers/ListMoreItems/IListMoreItemsController.js +0 -3
- package/Presentation/Scheduler/controllers/ListMoreItems/ListMoreItemsController.js +9 -8
- package/Presentation/Scheduler/controllers/ListMoreItems/ListMoreItemsController.js.map +1 -1
- package/Presentation/Scheduler/controllers/ListMoreItems/index.js +0 -2
- package/Presentation/Scheduler/controllers/PublishItem/IPublishItemController.js +0 -3
- package/Presentation/Scheduler/controllers/PublishItem/PublishItemController.js +9 -8
- package/Presentation/Scheduler/controllers/PublishItem/PublishItemController.js.map +1 -1
- package/Presentation/Scheduler/controllers/PublishItem/index.js +0 -2
- package/Presentation/Scheduler/controllers/SearchItems/ISearchItemsController.js +0 -3
- package/Presentation/Scheduler/controllers/SearchItems/SearchItemsController.js +12 -11
- package/Presentation/Scheduler/controllers/SearchItems/SearchItemsController.js.map +1 -1
- package/Presentation/Scheduler/controllers/SearchItems/index.js +0 -2
- package/Presentation/Scheduler/controllers/SelectAllItems/ISelectAllItemsController.js +0 -3
- package/Presentation/Scheduler/controllers/SelectAllItems/SelectAllItemsController.js +9 -8
- package/Presentation/Scheduler/controllers/SelectAllItems/SelectAllItemsController.js.map +1 -1
- package/Presentation/Scheduler/controllers/SelectAllItems/index.js +0 -2
- package/Presentation/Scheduler/controllers/SelectItems/ISelectItemsController.js +0 -3
- package/Presentation/Scheduler/controllers/SelectItems/SelectItemsController.js +10 -9
- package/Presentation/Scheduler/controllers/SelectItems/SelectItemsController.js.map +1 -1
- package/Presentation/Scheduler/controllers/SelectItems/index.js +0 -2
- package/Presentation/Scheduler/controllers/SortItems/ISortItemsController.d.ts +2 -2
- package/Presentation/Scheduler/controllers/SortItems/ISortItemsController.js +0 -3
- package/Presentation/Scheduler/controllers/SortItems/SortItemsController.d.ts +2 -2
- package/Presentation/Scheduler/controllers/SortItems/SortItemsController.js +13 -14
- package/Presentation/Scheduler/controllers/SortItems/SortItemsController.js.map +1 -1
- package/Presentation/Scheduler/controllers/SortItems/index.js +0 -2
- package/Presentation/Scheduler/controllers/UnpublishItem/IUnpublishItemController.js +0 -3
- package/Presentation/Scheduler/controllers/UnpublishItem/UnpublishItemController.js +9 -8
- package/Presentation/Scheduler/controllers/UnpublishItem/UnpublishItemController.js.map +1 -1
- package/Presentation/Scheduler/controllers/UnpublishItem/index.js +0 -2
- package/Presentation/Scheduler/controllers/UnselectAllItems/IUnselectAllItemsController.js +0 -3
- package/Presentation/Scheduler/controllers/UnselectAllItems/UnselectAllItemsController.js +9 -8
- package/Presentation/Scheduler/controllers/UnselectAllItems/UnselectAllItemsController.js.map +1 -1
- package/Presentation/Scheduler/controllers/UnselectAllItems/index.js +0 -2
- package/Presentation/Scheduler/controllers/index.js +0 -2
- package/Presentation/Scheduler/index.js +0 -2
- package/Presentation/SchedulerConfigs/SchedulerConfigs.js +48 -51
- package/Presentation/SchedulerConfigs/SchedulerConfigs.js.map +1 -1
- package/Presentation/SchedulerConfigs/index.js +0 -2
- package/Presentation/SchedulerRenderer/SchedulerRenderer.js +10 -15
- package/Presentation/SchedulerRenderer/SchedulerRenderer.js.map +1 -1
- package/Presentation/SchedulerRenderer/index.js +0 -2
- package/Presentation/abstractions/ISchedulerControllers.js +0 -3
- package/Presentation/abstractions/ISchedulerPresenter.js +0 -3
- package/Presentation/abstractions/index.js +0 -3
- package/Presentation/components/Actions/CancelItem/CancelItem.js +14 -19
- package/Presentation/components/Actions/CancelItem/CancelItem.js.map +1 -1
- package/Presentation/components/Actions/CancelItem/index.js +0 -2
- package/Presentation/components/Actions/index.js +0 -2
- package/Presentation/components/BottomInfoBar/BottomInfoBar.js +11 -12
- package/Presentation/components/BottomInfoBar/BottomInfoBar.js.map +1 -1
- package/Presentation/components/BottomInfoBar/BottomInfoBar.styled.js +41 -67
- package/Presentation/components/BottomInfoBar/BottomInfoBar.styled.js.map +1 -1
- package/Presentation/components/BottomInfoBar/ListMeta.js +6 -9
- package/Presentation/components/BottomInfoBar/ListMeta.js.map +1 -1
- package/Presentation/components/BottomInfoBar/ListStatus.js +8 -12
- package/Presentation/components/BottomInfoBar/ListStatus.js.map +1 -1
- package/Presentation/components/BottomInfoBar/index.js +0 -2
- package/Presentation/components/Cells/CellActions/CellActions.js +12 -17
- package/Presentation/components/Cells/CellActions/CellActions.js.map +1 -1
- package/Presentation/components/Cells/CellActions/index.js +0 -2
- package/Presentation/components/Cells/CellRevision/CellRevision.js +9 -14
- package/Presentation/components/Cells/CellRevision/CellRevision.js.map +1 -1
- package/Presentation/components/Cells/CellRevision/CellRevision.styled.d.ts +1 -1
- package/Presentation/components/Cells/CellRevision/CellRevision.styled.js +16 -42
- package/Presentation/components/Cells/CellRevision/CellRevision.styled.js.map +1 -1
- package/Presentation/components/Cells/CellRevision/index.js +0 -2
- package/Presentation/components/Cells/CellScheduledBy/CellScheduledBy.js +6 -9
- package/Presentation/components/Cells/CellScheduledBy/CellScheduledBy.js.map +1 -1
- package/Presentation/components/Cells/CellScheduledBy/index.js +0 -2
- package/Presentation/components/Cells/CellScheduledOn/CellScheduledOn.js +11 -18
- package/Presentation/components/Cells/CellScheduledOn/CellScheduledOn.js.map +1 -1
- package/Presentation/components/Cells/CellScheduledOn/index.js +0 -2
- package/Presentation/components/Cells/CellTitle/CellTitle.js +9 -12
- package/Presentation/components/Cells/CellTitle/CellTitle.js.map +1 -1
- package/Presentation/components/Cells/CellTitle/CellTitle.styled.d.ts +1 -1
- package/Presentation/components/Cells/CellTitle/CellTitle.styled.js +16 -42
- package/Presentation/components/Cells/CellTitle/CellTitle.styled.js.map +1 -1
- package/Presentation/components/Cells/CellTitle/index.js +0 -2
- package/Presentation/components/Cells/CellType/CellActionType.js +10 -13
- package/Presentation/components/Cells/CellType/CellActionType.js.map +1 -1
- package/Presentation/components/Cells/CellType/CellActionType.styled.d.ts +1 -1
- package/Presentation/components/Cells/CellType/CellActionType.styled.js +16 -42
- package/Presentation/components/Cells/CellType/CellActionType.styled.js.map +1 -1
- package/Presentation/components/Cells/CellType/index.js +0 -2
- package/Presentation/components/Cells/index.js +0 -2
- package/Presentation/components/Empty/Empty.js +15 -16
- package/Presentation/components/Empty/Empty.js.map +1 -1
- package/Presentation/components/Empty/Empty.styled.js +14 -28
- package/Presentation/components/Empty/Empty.styled.js.map +1 -1
- package/Presentation/components/Empty/index.js +0 -2
- package/Presentation/components/ScheduleDialog/IScheduleDialogPresenter.js +0 -3
- package/Presentation/components/ScheduleDialog/ScheduleDialogPresenter.js +75 -79
- package/Presentation/components/ScheduleDialog/ScheduleDialogPresenter.js.map +1 -1
- package/Presentation/components/ScheduleDialog/index.js +0 -2
- package/Presentation/components/ScheduleDialog/types.js +0 -3
- package/Presentation/components/ScheduleDialog/useScheduleDialog.js +165 -207
- package/Presentation/components/ScheduleDialog/useScheduleDialog.js.map +1 -1
- package/Presentation/components/SchedulerOverlay/SchedulerOverlay.js +19 -25
- package/Presentation/components/SchedulerOverlay/SchedulerOverlay.js.map +1 -1
- package/Presentation/components/SchedulerOverlay/index.js +0 -2
- package/Presentation/components/SearchInput/SearchInput.js +25 -32
- package/Presentation/components/SearchInput/SearchInput.js.map +1 -1
- package/Presentation/components/SearchInput/index.js +0 -2
- package/Presentation/components/Table/Table.js +23 -28
- package/Presentation/components/Table/Table.js.map +1 -1
- package/Presentation/components/Table/index.js +0 -2
- package/Presentation/components/Title/Title.js +7 -12
- package/Presentation/components/Title/Title.js.map +1 -1
- package/Presentation/components/Title/Title.styled.d.ts +1 -2
- package/Presentation/components/Title/Title.styled.js +11 -16
- package/Presentation/components/Title/Title.styled.js.map +1 -1
- package/Presentation/components/Title/index.js +0 -2
- package/Presentation/configs/index.js +0 -2
- package/Presentation/configs/list/Browser/EntryAction.js +8 -11
- package/Presentation/configs/list/Browser/EntryAction.js.map +1 -1
- package/Presentation/configs/list/Browser/Table/Column.js +7 -10
- package/Presentation/configs/list/Browser/Table/Column.js.map +1 -1
- package/Presentation/configs/list/Browser/Table/Sorting.js +4 -7
- package/Presentation/configs/list/Browser/Table/Sorting.js.map +1 -1
- package/Presentation/configs/list/Browser/Table/index.js +4 -3
- package/Presentation/configs/list/Browser/Table/index.js.map +1 -1
- package/Presentation/configs/list/Browser/index.js +4 -3
- package/Presentation/configs/list/Browser/index.js.map +1 -1
- package/Presentation/configs/list/SchedulerListConfig.js +20 -21
- package/Presentation/configs/list/SchedulerListConfig.js.map +1 -1
- package/Presentation/configs/list/index.js +0 -2
- package/Presentation/hooks/index.js +0 -2
- package/Presentation/hooks/useCancelSchedulerItem.js +22 -27
- package/Presentation/hooks/useCancelSchedulerItem.js.map +1 -1
- package/Presentation/hooks/useScheduler.js +62 -46
- package/Presentation/hooks/useScheduler.js.map +1 -1
- package/Presentation/hooks/useSchedulerItem.js +4 -6
- package/Presentation/hooks/useSchedulerItem.js.map +1 -1
- package/Presentation/index.js +35 -42
- package/Presentation/index.js.map +1 -1
- package/UseCases/CancelItem/CancelItemUseCase.js +9 -8
- package/UseCases/CancelItem/CancelItemUseCase.js.map +1 -1
- package/UseCases/CancelItem/ICancelItemUseCase.js +0 -3
- package/UseCases/CancelItem/index.js +0 -2
- package/UseCases/GetItem/GetItemUseCase.js +9 -8
- package/UseCases/GetItem/GetItemUseCase.js.map +1 -1
- package/UseCases/GetItem/IGetItemUseCase.js +0 -3
- package/UseCases/GetItem/index.js +0 -2
- package/UseCases/GetScheduledItem/GetScheduledItemUseCase.js +10 -9
- package/UseCases/GetScheduledItem/GetScheduledItemUseCase.js.map +1 -1
- package/UseCases/GetScheduledItem/IGetScheduledItemUseCase.js +0 -3
- package/UseCases/GetScheduledItem/index.js +0 -2
- package/UseCases/ListItems/IListItemsUseCase.js +0 -3
- package/UseCases/ListItems/ListItemsUseCase.js +9 -8
- package/UseCases/ListItems/ListItemsUseCase.js.map +1 -1
- package/UseCases/ListItems/ListItemsUseCaseWithSearch.js +19 -18
- package/UseCases/ListItems/ListItemsUseCaseWithSearch.js.map +1 -1
- package/UseCases/ListItems/ListItemsUseCaseWithSorting.js +16 -17
- package/UseCases/ListItems/ListItemsUseCaseWithSorting.js.map +1 -1
- package/UseCases/ListItems/index.js +0 -2
- package/UseCases/ListMoreItems/IListMoreItemsUseCase.js +0 -3
- package/UseCases/ListMoreItems/ListMoreItemsUseCase.js +9 -8
- package/UseCases/ListMoreItems/ListMoreItemsUseCase.js.map +1 -1
- package/UseCases/ListMoreItems/index.js +0 -2
- package/UseCases/PublishItem/IPublishItemUseCase.js +0 -3
- package/UseCases/PublishItem/PublishItemUseCase.js +9 -8
- package/UseCases/PublishItem/PublishItemUseCase.js.map +1 -1
- package/UseCases/PublishItem/index.js +0 -2
- package/UseCases/SearchItems/ISearchItemsUseCase.js +0 -3
- package/UseCases/SearchItems/SearchItemsUseCase.js +9 -8
- package/UseCases/SearchItems/SearchItemsUseCase.js.map +1 -1
- package/UseCases/SearchItems/index.js +0 -2
- package/UseCases/SelectAllItems/ISelectAllItemsUseCase.js +0 -3
- package/UseCases/SelectAllItems/SelectAllItemsUseCase.js +9 -8
- package/UseCases/SelectAllItems/SelectAllItemsUseCase.js.map +1 -1
- package/UseCases/SelectAllItems/index.js +0 -2
- package/UseCases/SelectItems/ISelectItemsUseCase.js +0 -3
- package/UseCases/SelectItems/SelectItemsUseCase.js +9 -8
- package/UseCases/SelectItems/SelectItemsUseCase.js.map +1 -1
- package/UseCases/SelectItems/index.js +0 -2
- package/UseCases/SortItems/ISortItemsUseCase.js +0 -3
- package/UseCases/SortItems/SortItemsUseCase.js +9 -8
- package/UseCases/SortItems/SortItemsUseCase.js.map +1 -1
- package/UseCases/SortItems/index.js +0 -2
- package/UseCases/UnSelectAllItems/IUnselectAllItemsUseCase.js +0 -3
- package/UseCases/UnSelectAllItems/UnselectAllItemsUseCase.js +9 -8
- package/UseCases/UnSelectAllItems/UnselectAllItemsUseCase.js.map +1 -1
- package/UseCases/UnSelectAllItems/index.js +0 -2
- package/UseCases/UnpublishItem/IUnpublishItemUseCase.js +0 -3
- package/UseCases/UnpublishItem/UnpublishItemUseCase.js +9 -8
- package/UseCases/UnpublishItem/UnpublishItemUseCase.js.map +1 -1
- package/UseCases/UnpublishItem/index.js +0 -2
- package/UseCases/index.js +0 -2
- package/index.js +1 -3
- package/package.json +16 -18
- package/types.js +12 -11
- package/types.js.map +1 -1
- package/Domain/Models/SchedulerItem/index.js.map +0 -1
- package/Domain/Models/index.js.map +0 -1
- package/Domain/Repositories/SchedulerItems/ISchedulerItemsRepository.js.map +0 -1
- package/Domain/Repositories/SchedulerItems/index.js.map +0 -1
- package/Domain/Repositories/Search/ISearchRepository.js.map +0 -1
- package/Domain/Repositories/Search/index.js.map +0 -1
- package/Domain/Repositories/SelectedItems/ISelectedItemsRepository.js.map +0 -1
- package/Domain/Repositories/SelectedItems/index.js.map +0 -1
- package/Domain/Repositories/Sorting/index.js.map +0 -1
- package/Domain/Repositories/index.js.map +0 -1
- package/Domain/index.js.map +0 -1
- package/Gateways/abstractions/CancelScheduledActionGateway.js.map +0 -1
- package/Gateways/abstractions/GetScheduledActionGateway.js.map +0 -1
- package/Gateways/abstractions/ListScheduledActionsGateway.js.map +0 -1
- package/Gateways/abstractions/SchedulePublishActionGateway.js.map +0 -1
- package/Gateways/abstractions/ScheduleUnpublishActionGateway.js.map +0 -1
- package/Gateways/index.js.map +0 -1
- package/Presentation/Scheduler/controllers/CancelItem/ICancelItemController.js.map +0 -1
- package/Presentation/Scheduler/controllers/CancelItem/index.js.map +0 -1
- package/Presentation/Scheduler/controllers/GetItem/IGetItemController.js.map +0 -1
- package/Presentation/Scheduler/controllers/GetItem/index.js.map +0 -1
- package/Presentation/Scheduler/controllers/ListItems/IListItemsController.js.map +0 -1
- package/Presentation/Scheduler/controllers/ListItems/index.js.map +0 -1
- package/Presentation/Scheduler/controllers/ListMoreItems/IListMoreItemsController.js.map +0 -1
- package/Presentation/Scheduler/controllers/ListMoreItems/index.js.map +0 -1
- package/Presentation/Scheduler/controllers/PublishItem/IPublishItemController.js.map +0 -1
- package/Presentation/Scheduler/controllers/PublishItem/index.js.map +0 -1
- package/Presentation/Scheduler/controllers/SearchItems/ISearchItemsController.js.map +0 -1
- package/Presentation/Scheduler/controllers/SearchItems/index.js.map +0 -1
- package/Presentation/Scheduler/controllers/SelectAllItems/ISelectAllItemsController.js.map +0 -1
- package/Presentation/Scheduler/controllers/SelectAllItems/index.js.map +0 -1
- package/Presentation/Scheduler/controllers/SelectItems/ISelectItemsController.js.map +0 -1
- package/Presentation/Scheduler/controllers/SelectItems/index.js.map +0 -1
- package/Presentation/Scheduler/controllers/SortItems/ISortItemsController.js.map +0 -1
- package/Presentation/Scheduler/controllers/SortItems/index.js.map +0 -1
- package/Presentation/Scheduler/controllers/UnpublishItem/IUnpublishItemController.js.map +0 -1
- package/Presentation/Scheduler/controllers/UnpublishItem/index.js.map +0 -1
- package/Presentation/Scheduler/controllers/UnselectAllItems/IUnselectAllItemsController.js.map +0 -1
- package/Presentation/Scheduler/controllers/UnselectAllItems/index.js.map +0 -1
- package/Presentation/Scheduler/controllers/index.js.map +0 -1
- package/Presentation/Scheduler/index.js.map +0 -1
- package/Presentation/SchedulerConfigs/index.js.map +0 -1
- package/Presentation/SchedulerRenderer/index.js.map +0 -1
- package/Presentation/abstractions/ISchedulerControllers.js.map +0 -1
- package/Presentation/abstractions/ISchedulerPresenter.js.map +0 -1
- package/Presentation/abstractions/index.js.map +0 -1
- package/Presentation/components/Actions/CancelItem/index.js.map +0 -1
- package/Presentation/components/Actions/index.js.map +0 -1
- package/Presentation/components/BottomInfoBar/index.js.map +0 -1
- package/Presentation/components/Cells/CellActions/index.js.map +0 -1
- package/Presentation/components/Cells/CellRevision/index.js.map +0 -1
- package/Presentation/components/Cells/CellScheduledBy/index.js.map +0 -1
- package/Presentation/components/Cells/CellScheduledOn/index.js.map +0 -1
- package/Presentation/components/Cells/CellTitle/index.js.map +0 -1
- package/Presentation/components/Cells/CellType/index.js.map +0 -1
- package/Presentation/components/Cells/index.js.map +0 -1
- package/Presentation/components/Empty/index.js.map +0 -1
- package/Presentation/components/ScheduleDialog/IScheduleDialogPresenter.js.map +0 -1
- package/Presentation/components/ScheduleDialog/index.js.map +0 -1
- package/Presentation/components/ScheduleDialog/types.js.map +0 -1
- package/Presentation/components/SchedulerOverlay/index.js.map +0 -1
- package/Presentation/components/SearchInput/index.js.map +0 -1
- package/Presentation/components/Table/index.js.map +0 -1
- package/Presentation/components/Title/index.js.map +0 -1
- package/Presentation/configs/index.js.map +0 -1
- package/Presentation/configs/list/index.js.map +0 -1
- package/Presentation/hooks/index.js.map +0 -1
- package/UseCases/CancelItem/ICancelItemUseCase.js.map +0 -1
- package/UseCases/CancelItem/index.js.map +0 -1
- package/UseCases/GetItem/IGetItemUseCase.js.map +0 -1
- package/UseCases/GetItem/index.js.map +0 -1
- package/UseCases/GetScheduledItem/IGetScheduledItemUseCase.js.map +0 -1
- package/UseCases/GetScheduledItem/index.js.map +0 -1
- package/UseCases/ListItems/IListItemsUseCase.js.map +0 -1
- package/UseCases/ListItems/index.js.map +0 -1
- package/UseCases/ListMoreItems/IListMoreItemsUseCase.js.map +0 -1
- package/UseCases/ListMoreItems/index.js.map +0 -1
- package/UseCases/PublishItem/IPublishItemUseCase.js.map +0 -1
- package/UseCases/PublishItem/index.js.map +0 -1
- package/UseCases/SearchItems/ISearchItemsUseCase.js.map +0 -1
- package/UseCases/SearchItems/index.js.map +0 -1
- package/UseCases/SelectAllItems/ISelectAllItemsUseCase.js.map +0 -1
- package/UseCases/SelectAllItems/index.js.map +0 -1
- package/UseCases/SelectItems/ISelectItemsUseCase.js.map +0 -1
- package/UseCases/SelectItems/index.js.map +0 -1
- package/UseCases/SortItems/ISortItemsUseCase.js.map +0 -1
- package/UseCases/SortItems/index.js.map +0 -1
- package/UseCases/UnSelectAllItems/IUnselectAllItemsUseCase.js.map +0 -1
- package/UseCases/UnSelectAllItems/index.js.map +0 -1
- package/UseCases/UnpublishItem/IUnpublishItemUseCase.js.map +0 -1
- package/UseCases/UnpublishItem/index.js.map +0 -1
- package/UseCases/index.js.map +0 -1
- package/index.js.map +0 -1
|
@@ -1,69 +1,43 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
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
|
-
});
|
|
1
|
+
import styled from "@emotion/styled";
|
|
2
|
+
const BottomInfoBarWrapper = styled("div")`
|
|
3
|
+
font-size: 0.8rem;
|
|
4
|
+
position: sticky;
|
|
5
|
+
bottom: 0;
|
|
6
|
+
height: 30px;
|
|
7
|
+
color: var(--mdc-theme-text-secondary-on-background);
|
|
8
|
+
border-top: 1px solid var(--mdc-theme-on-background);
|
|
9
|
+
background: var(--mdc-theme-surface);
|
|
10
|
+
width: 100%;
|
|
11
|
+
transform: translateZ(0);
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
display: flex;
|
|
14
|
+
align-items: center;
|
|
15
|
+
z-index: 1;
|
|
16
|
+
`;
|
|
17
|
+
const BottomInfoBarInner = styled("div")`
|
|
18
|
+
padding: 0 10px;
|
|
19
|
+
width: 100%;
|
|
20
|
+
`;
|
|
21
|
+
const StatusWrapper = styled("div")`
|
|
22
|
+
color: var(--mdc-theme-primary);
|
|
23
|
+
position: absolute;
|
|
24
|
+
right: 0;
|
|
25
|
+
bottom: 10px;
|
|
26
|
+
margin-right: 10px;
|
|
27
|
+
display: flex;
|
|
28
|
+
align-items: center;
|
|
29
|
+
> div {
|
|
30
|
+
display: inline-block;
|
|
31
|
+
}
|
|
32
|
+
`;
|
|
33
|
+
const CircularProgressHolder = styled("div")`
|
|
34
|
+
position: relative;
|
|
35
|
+
height: 12px;
|
|
36
|
+
width: 12px;
|
|
37
|
+
`;
|
|
38
|
+
const UploadingLabel = styled("div")`
|
|
39
|
+
margin-right: 5px;
|
|
40
|
+
`;
|
|
41
|
+
export { BottomInfoBarInner, BottomInfoBarWrapper, CircularProgressHolder, StatusWrapper, UploadingLabel };
|
|
68
42
|
|
|
69
43
|
//# sourceMappingURL=BottomInfoBar.styled.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"Presentation/components/BottomInfoBar/BottomInfoBar.styled.js","sources":["../../../../src/Presentation/components/BottomInfoBar/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"],"names":["BottomInfoBarWrapper","styled","BottomInfoBarInner","StatusWrapper","CircularProgressHolder","UploadingLabel"],"mappings":";AAEO,MAAMA,uBAAuBC,OAAO,MAAM,CAAC;;;;;;;;;;;;;;AAclD,CAAC;AAEM,MAAMC,qBAAqBD,OAAO,MAAM,CAAC;;;AAGhD,CAAC;AAEM,MAAME,gBAAgBF,OAAO,MAAM,CAAC;;;;;;;;;;;AAW3C,CAAC;AAEM,MAAMG,yBAAyBH,OAAO,MAAM,CAAC;;;;AAIpD,CAAC;AAEM,MAAMI,iBAAiBJ,OAAO,MAAM,CAAC;;AAE5C,CAAC"}
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
if (props.loading) {
|
|
7
|
-
return null;
|
|
8
|
-
}
|
|
9
|
-
return /*#__PURE__*/React.createElement("span", null, `Showing ${props.currentCount} out of ${getLabel(props.totalCount)}.`);
|
|
1
|
+
import react, { useCallback } from "react";
|
|
2
|
+
const ListMeta = (props)=>{
|
|
3
|
+
const getLabel = useCallback((count = 0)=>`${count} ${1 === count ? "item" : "items"}`, []);
|
|
4
|
+
if (props.loading) return null;
|
|
5
|
+
return /*#__PURE__*/ react.createElement("span", null, `Showing ${props.currentCount} out of ${getLabel(props.totalCount)}.`);
|
|
10
6
|
};
|
|
7
|
+
export { ListMeta };
|
|
11
8
|
|
|
12
9
|
//# sourceMappingURL=ListMeta.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"Presentation/components/BottomInfoBar/ListMeta.js","sources":["../../../../src/Presentation/components/BottomInfoBar/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"],"names":["ListMeta","props","getLabel","useCallback","count"],"mappings":";AAQO,MAAMA,WAAW,CAACC;IACrB,MAAMC,WAAWC,YAAY,CAACC,QAAQ,CAAC,GAC5B,GAAGA,MAAM,CAAC,EAAEA,AAAU,MAAVA,QAAc,SAAS,SAAS,EACpD,EAAE;IAEL,IAAIH,MAAM,OAAO,EACb,OAAO;IAGX,OAAO,WAAP,GAAO,oBAAC,cAAM,CAAC,QAAQ,EAAEA,MAAM,YAAY,CAAC,QAAQ,EAAEC,SAASD,MAAM,UAAU,EAAE,CAAC,CAAC;AACvF"}
|
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
1
|
+
import react from "react";
|
|
2
|
+
import { Loader } from "@webiny/admin-ui";
|
|
3
3
|
import { CircularProgressHolder, StatusWrapper, UploadingLabel } from "./BottomInfoBar.styled.js";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
})));
|
|
4
|
+
const ListStatus = ({ loading })=>{
|
|
5
|
+
if (!loading) return null;
|
|
6
|
+
return /*#__PURE__*/ react.createElement(StatusWrapper, null, /*#__PURE__*/ react.createElement(UploadingLabel, null, "Loading more items..."), /*#__PURE__*/ react.createElement(CircularProgressHolder, null, /*#__PURE__*/ react.createElement(Loader, {
|
|
7
|
+
size: "xs"
|
|
8
|
+
})));
|
|
14
9
|
};
|
|
10
|
+
export { ListStatus };
|
|
15
11
|
|
|
16
12
|
//# sourceMappingURL=ListStatus.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"Presentation/components/BottomInfoBar/ListStatus.js","sources":["../../../../src/Presentation/components/BottomInfoBar/ListStatus.tsx"],"sourcesContent":["import React from \"react\";\nimport { Loader } from \"@webiny/admin-ui\";\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 <Loader size={\"xs\"} />\n </CircularProgressHolder>\n </StatusWrapper>\n );\n};\n"],"names":["ListStatus","loading","StatusWrapper","UploadingLabel","CircularProgressHolder","Loader"],"mappings":";;;AAQO,MAAMA,aAAa,CAAC,EAAEC,OAAO,EAAmB;IACnD,IAAI,CAACA,SACD,OAAO;IAGX,OAAO,WAAP,GACI,oBAACC,eAAaA,MAAAA,WAAAA,GACV,oBAACC,gBAAcA,MAAE,wCACjB,oBAACC,wBAAsBA,MAAAA,WAAAA,GACnB,oBAACC,QAAMA;QAAC,MAAM;;AAI9B"}
|
|
@@ -1,23 +1,18 @@
|
|
|
1
|
-
import
|
|
1
|
+
import react from "react";
|
|
2
2
|
import { OptionsMenu } from "@webiny/app-admin";
|
|
3
3
|
import { SchedulerListConfig, useSchedulerListConfig } from "../../../configs/index.js";
|
|
4
4
|
import { SchedulerItemProvider } from "../../../hooks/index.js";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
useTableRow
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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
|
-
}));
|
|
5
|
+
const CellActions = ()=>{
|
|
6
|
+
const { useTableRow } = SchedulerListConfig.Browser.Table.Column;
|
|
7
|
+
const { row } = useTableRow();
|
|
8
|
+
const { browser } = useSchedulerListConfig();
|
|
9
|
+
return /*#__PURE__*/ react.createElement(SchedulerItemProvider, {
|
|
10
|
+
item: row.data
|
|
11
|
+
}, /*#__PURE__*/ react.createElement(OptionsMenu, {
|
|
12
|
+
actions: browser.entryActions,
|
|
13
|
+
"data-testid": "table.row.scheduler.entry.menu-action"
|
|
14
|
+
}));
|
|
21
15
|
};
|
|
16
|
+
export { CellActions };
|
|
22
17
|
|
|
23
18
|
//# sourceMappingURL=CellActions.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"Presentation/components/Cells/CellActions/CellActions.js","sources":["../../../../../src/Presentation/components/Cells/CellActions/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"],"names":["CellActions","useTableRow","SchedulerListConfig","row","browser","useSchedulerListConfig","SchedulerItemProvider","OptionsMenu"],"mappings":";;;;AAKO,MAAMA,cAAc;IACvB,MAAM,EAAEC,WAAW,EAAE,GAAGC,oBAAoB,OAAO,CAAC,KAAK,CAAC,MAAM;IAChE,MAAM,EAAEC,GAAG,EAAE,GAAGF;IAChB,MAAM,EAAEG,OAAO,EAAE,GAAGC;IAEpB,OAAO,WAAP,GACI,oBAACC,uBAAqBA;QAAC,MAAMH,IAAI,IAAI;qBACjC,oBAACI,aAAWA;QACR,SAASH,QAAQ,YAAY;QAC7B,eAAa;;AAI7B"}
|
|
@@ -1,20 +1,15 @@
|
|
|
1
|
-
import
|
|
1
|
+
import react from "react";
|
|
2
2
|
import { RowText, RowTitle } from "./CellRevision.styled.js";
|
|
3
3
|
import { SchedulerListConfig } from "../../../configs/index.js";
|
|
4
4
|
import { parseIdentifier } from "@webiny/utils/parseIdentifier.js";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
useTableRow
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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));
|
|
5
|
+
const CellRevision = ()=>{
|
|
6
|
+
const { useTableRow } = SchedulerListConfig.Browser.Table.Column;
|
|
7
|
+
const { row } = useTableRow();
|
|
8
|
+
const { version } = parseIdentifier(row.data.targetId);
|
|
9
|
+
return /*#__PURE__*/ react.createElement(RowTitle, null, /*#__PURE__*/ react.createElement(RowText, {
|
|
10
|
+
size: "sm"
|
|
11
|
+
}, version));
|
|
18
12
|
};
|
|
13
|
+
export { CellRevision };
|
|
19
14
|
|
|
20
15
|
//# sourceMappingURL=CellRevision.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"Presentation/components/Cells/CellRevision/CellRevision.js","sources":["../../../../../src/Presentation/components/Cells/CellRevision/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 size={\"sm\"}>{version}</RowText>\n </RowTitle>\n );\n};\n"],"names":["CellRevision","useTableRow","SchedulerListConfig","row","version","parseIdentifier","RowTitle","RowText"],"mappings":";;;;AAKO,MAAMA,eAAe;IACxB,MAAM,EAAEC,WAAW,EAAE,GAAGC,oBAAoB,OAAO,CAAC,KAAK,CAAC,MAAM;IAChE,MAAM,EAAEC,GAAG,EAAE,GAAGF;IAEhB,MAAM,EAAEG,OAAO,EAAE,GAAGC,gBAAgBF,IAAI,IAAI,CAAC,QAAQ;IACrD,OAAO,WAAP,GACI,oBAACG,UAAQA,MAAAA,WAAAA,GACL,oBAACC,SAAOA;QAAC,MAAM;OAAOH;AAGlC"}
|
|
@@ -6,6 +6,6 @@ export declare const RowIcon: import("@emotion/styled").StyledComponent<{
|
|
|
6
6
|
theme?: import("@emotion/react").Theme;
|
|
7
7
|
as?: React.ElementType;
|
|
8
8
|
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
9
|
-
export declare const RowText: import("@emotion/styled").StyledComponent<import("@webiny/ui
|
|
9
|
+
export declare const RowText: import("@emotion/styled").StyledComponent<import("@webiny/admin-ui").TextProps & {
|
|
10
10
|
theme?: import("@emotion/react").Theme;
|
|
11
11
|
}, {}, {}>;
|
|
@@ -1,44 +1,18 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
17
|
-
export const RowIcon = /*#__PURE__*/_styled("div", process.env.NODE_ENV === "production" ? {
|
|
18
|
-
target: "eylbj5e1"
|
|
19
|
-
} : {
|
|
20
|
-
target: "eylbj5e1",
|
|
21
|
-
label: "RowIcon"
|
|
22
|
-
})(process.env.NODE_ENV === "production" ? {
|
|
23
|
-
name: "1hpq26k",
|
|
24
|
-
styles: "margin-right:8px;height:24px"
|
|
25
|
-
} : {
|
|
26
|
-
name: "1hpq26k",
|
|
27
|
-
styles: "margin-right:8px;height:24px/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIkNlbGxSZXZpc2lvbi5zdHlsZWQudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQVFvQyIsImZpbGUiOiJDZWxsUmV2aXNpb24uc3R5bGVkLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSBcIkBlbW90aW9uL3N0eWxlZFwiO1xuaW1wb3J0IHsgVHlwb2dyYXBoeSB9IGZyb20gXCJAd2ViaW55L3VpL1R5cG9ncmFwaHkvaW5kZXguanNcIjtcblxuZXhwb3J0IGNvbnN0IFJvd1RpdGxlID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbmA7XG5cbmV4cG9ydCBjb25zdCBSb3dJY29uID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIG1hcmdpbi1yaWdodDogOHB4O1xuICAgIGhlaWdodDogMjRweDtcbmA7XG5cbmV4cG9ydCBjb25zdCBSb3dUZXh0ID0gc3R5bGVkKFR5cG9ncmFwaHkpYFxuICAgIHdoaXRlLXNwYWNlOiBub3dyYXA7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICB0ZXh0LW92ZXJmbG93OiBlbGxpcHNpcztcbmA7XG4iXX0= */",
|
|
28
|
-
toString: _EMOTION_STRINGIFIED_CSS_ERROR__
|
|
29
|
-
});
|
|
30
|
-
export const RowText = /*#__PURE__*/_styled(Typography, process.env.NODE_ENV === "production" ? {
|
|
31
|
-
target: "eylbj5e0"
|
|
32
|
-
} : {
|
|
33
|
-
target: "eylbj5e0",
|
|
34
|
-
label: "RowText"
|
|
35
|
-
})(process.env.NODE_ENV === "production" ? {
|
|
36
|
-
name: "l8l8b8",
|
|
37
|
-
styles: "white-space:nowrap;overflow:hidden;text-overflow:ellipsis"
|
|
38
|
-
} : {
|
|
39
|
-
name: "l8l8b8",
|
|
40
|
-
styles: "white-space:nowrap;overflow:hidden;text-overflow:ellipsis/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIkNlbGxSZXZpc2lvbi5zdHlsZWQudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQWF5QyIsImZpbGUiOiJDZWxsUmV2aXNpb24uc3R5bGVkLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSBcIkBlbW90aW9uL3N0eWxlZFwiO1xuaW1wb3J0IHsgVHlwb2dyYXBoeSB9IGZyb20gXCJAd2ViaW55L3VpL1R5cG9ncmFwaHkvaW5kZXguanNcIjtcblxuZXhwb3J0IGNvbnN0IFJvd1RpdGxlID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbmA7XG5cbmV4cG9ydCBjb25zdCBSb3dJY29uID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIG1hcmdpbi1yaWdodDogOHB4O1xuICAgIGhlaWdodDogMjRweDtcbmA7XG5cbmV4cG9ydCBjb25zdCBSb3dUZXh0ID0gc3R5bGVkKFR5cG9ncmFwaHkpYFxuICAgIHdoaXRlLXNwYWNlOiBub3dyYXA7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICB0ZXh0LW92ZXJmbG93OiBlbGxpcHNpcztcbmA7XG4iXX0= */",
|
|
41
|
-
toString: _EMOTION_STRINGIFIED_CSS_ERROR__
|
|
42
|
-
});
|
|
1
|
+
import styled from "@emotion/styled";
|
|
2
|
+
import { Text } from "@webiny/admin-ui";
|
|
3
|
+
const RowTitle = styled("div")`
|
|
4
|
+
display: flex;
|
|
5
|
+
align-items: center;
|
|
6
|
+
`;
|
|
7
|
+
const RowIcon = styled("div")`
|
|
8
|
+
margin-right: 8px;
|
|
9
|
+
height: 24px;
|
|
10
|
+
`;
|
|
11
|
+
const RowText = styled(Text)`
|
|
12
|
+
white-space: nowrap;
|
|
13
|
+
overflow: hidden;
|
|
14
|
+
text-overflow: ellipsis;
|
|
15
|
+
`;
|
|
16
|
+
export { RowIcon, RowText, RowTitle };
|
|
43
17
|
|
|
44
18
|
//# sourceMappingURL=CellRevision.styled.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"Presentation/components/Cells/CellRevision/CellRevision.styled.js","sources":["../../../../../src/Presentation/components/Cells/CellRevision/CellRevision.styled.tsx"],"sourcesContent":["import styled from \"@emotion/styled\";\nimport { Text } from \"@webiny/admin-ui\";\n\nexport const RowTitle = styled(\"div\")`\n display: flex;\n align-items: center;\n`;\n\nexport const RowIcon = styled(\"div\")`\n margin-right: 8px;\n height: 24px;\n`;\n\nexport const RowText = styled(Text)`\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n`;\n"],"names":["RowTitle","styled","RowIcon","RowText","Text"],"mappings":";;AAGO,MAAMA,WAAWC,OAAO,MAAM,CAAC;;;AAGtC,CAAC;AAEM,MAAMC,UAAUD,OAAO,MAAM,CAAC;;;AAGrC,CAAC;AAEM,MAAME,UAAUF,OAAOG,KAAK,CAAC;;;;AAIpC,CAAC"}
|
|
@@ -1,13 +1,10 @@
|
|
|
1
|
-
import
|
|
1
|
+
import react from "react";
|
|
2
2
|
import { SchedulerListConfig } from "../../../configs/index.js";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
useTableRow
|
|
6
|
-
|
|
7
|
-
const {
|
|
8
|
-
row
|
|
9
|
-
} = useTableRow();
|
|
10
|
-
return /*#__PURE__*/React.createElement(React.Fragment, null, row.data.scheduledBy?.displayName || "unknown");
|
|
3
|
+
const CellScheduledBy = ()=>{
|
|
4
|
+
const { useTableRow } = SchedulerListConfig.Browser.Table.Column;
|
|
5
|
+
const { row } = useTableRow();
|
|
6
|
+
return /*#__PURE__*/ react.createElement(react.Fragment, null, row.data.scheduledBy?.displayName || "unknown");
|
|
11
7
|
};
|
|
8
|
+
export { CellScheduledBy };
|
|
12
9
|
|
|
13
10
|
//# sourceMappingURL=CellScheduledBy.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"Presentation/components/Cells/CellScheduledBy/CellScheduledBy.js","sources":["../../../../../src/Presentation/components/Cells/CellScheduledBy/CellScheduledBy.tsx"],"sourcesContent":["import React from \"react\";\nimport { SchedulerListConfig } from \"~/Presentation/configs/index.js\";\n\nexport const CellScheduledBy = () => {\n const { useTableRow } = SchedulerListConfig.Browser.Table.Column;\n const { row } = useTableRow();\n\n return <>{row.data.scheduledBy?.displayName || \"unknown\"}</>;\n};\n"],"names":["CellScheduledBy","useTableRow","SchedulerListConfig","row"],"mappings":";;AAGO,MAAMA,kBAAkB;IAC3B,MAAM,EAAEC,WAAW,EAAE,GAAGC,oBAAoB,OAAO,CAAC,KAAK,CAAC,MAAM;IAChE,MAAM,EAAEC,GAAG,EAAE,GAAGF;IAEhB,OAAO,WAAP,GAAO,0CAAGE,IAAI,IAAI,CAAC,WAAW,EAAE,eAAe;AACnD"}
|
|
@@ -1,24 +1,17 @@
|
|
|
1
|
-
import
|
|
1
|
+
import react from "react";
|
|
2
2
|
import { SchedulerListConfig } from "../../../configs/index.js";
|
|
3
3
|
import { makeDecoratable } from "@webiny/react-composition";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
if (!dateTime) {
|
|
8
|
-
return /*#__PURE__*/React.createElement(React.Fragment, null, "Missing publish or unpublish date.");
|
|
9
|
-
}
|
|
10
|
-
return /*#__PURE__*/React.createElement(React.Fragment, null, dateTime.toLocaleString());
|
|
4
|
+
const CellScheduledOnLabel = makeDecoratable("Scheduler.CellScheduledOnLabel", ({ dateTime })=>{
|
|
5
|
+
if (!dateTime) return /*#__PURE__*/ react.createElement(react.Fragment, null, "Missing publish or unpublish date.");
|
|
6
|
+
return /*#__PURE__*/ react.createElement(react.Fragment, null, dateTime.toLocaleString());
|
|
11
7
|
});
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
useTableRow
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
} = useTableRow();
|
|
19
|
-
return /*#__PURE__*/React.createElement(CellScheduledOnLabel, {
|
|
20
|
-
dateTime: row.data.publishOn || row.data.unpublishOn
|
|
21
|
-
});
|
|
8
|
+
const CellScheduledOn = ()=>{
|
|
9
|
+
const { useTableRow } = SchedulerListConfig.Browser.Table.Column;
|
|
10
|
+
const { row } = useTableRow();
|
|
11
|
+
return /*#__PURE__*/ react.createElement(CellScheduledOnLabel, {
|
|
12
|
+
dateTime: row.data.publishOn || row.data.unpublishOn
|
|
13
|
+
});
|
|
22
14
|
};
|
|
15
|
+
export { CellScheduledOn, CellScheduledOnLabel };
|
|
23
16
|
|
|
24
17
|
//# sourceMappingURL=CellScheduledOn.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"Presentation/components/Cells/CellScheduledOn/CellScheduledOn.js","sources":["../../../../../src/Presentation/components/Cells/CellScheduledOn/CellScheduledOn.tsx"],"sourcesContent":["import React from \"react\";\nimport { SchedulerListConfig } from \"~/Presentation/configs/index.js\";\nimport { makeDecoratable } from \"@webiny/react-composition\";\n\nexport interface ICellScheduledOnLabelProps {\n dateTime: Date | undefined;\n}\n\nexport const CellScheduledOnLabel = makeDecoratable(\n \"Scheduler.CellScheduledOnLabel\",\n ({ dateTime }: ICellScheduledOnLabelProps) => {\n if (!dateTime) {\n return <>Missing publish or unpublish date.</>;\n }\n\n return <>{dateTime.toLocaleString()}</>;\n }\n);\n\nexport const CellScheduledOn = () => {\n const { useTableRow } = SchedulerListConfig.Browser.Table.Column;\n const { row } = useTableRow();\n\n return <CellScheduledOnLabel dateTime={row.data.publishOn || row.data.unpublishOn} />;\n};\n"],"names":["CellScheduledOnLabel","makeDecoratable","dateTime","CellScheduledOn","useTableRow","SchedulerListConfig","row"],"mappings":";;;AAQO,MAAMA,uBAAuBC,gBAChC,kCACA,CAAC,EAAEC,QAAQ,EAA8B;IACrC,IAAI,CAACA,UACD,OAAO,WAAP,GAAO,0CAAE;IAGb,OAAO,WAAP,GAAO,0CAAGA,SAAS,cAAc;AACrC;AAGG,MAAMC,kBAAkB;IAC3B,MAAM,EAAEC,WAAW,EAAE,GAAGC,oBAAoB,OAAO,CAAC,KAAK,CAAC,MAAM;IAChE,MAAM,EAAEC,GAAG,EAAE,GAAGF;IAEhB,OAAO,WAAP,GAAO,oBAACJ,sBAAoBA;QAAC,UAAUM,IAAI,IAAI,CAAC,SAAS,IAAIA,IAAI,IAAI,CAAC,WAAW;;AACrF"}
|
|
@@ -1,17 +1,14 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { ReactComponent
|
|
1
|
+
import react from "react";
|
|
2
|
+
import { ReactComponent } from "@material-design-icons/svg/outlined/description.svg";
|
|
3
3
|
import { RowIcon, RowText, RowTitle } from "./CellTitle.styled.js";
|
|
4
4
|
import { SchedulerListConfig } from "../../../configs/index.js";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
useTableRow
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
row
|
|
11
|
-
} = useTableRow();
|
|
12
|
-
return /*#__PURE__*/React.createElement(RowTitle, null, /*#__PURE__*/React.createElement(RowIcon, null, /*#__PURE__*/React.createElement(File, null)), /*#__PURE__*/React.createElement(RowText, {
|
|
13
|
-
use: "subtitle2"
|
|
14
|
-
}, row.data.title));
|
|
5
|
+
const CellTitle = ()=>{
|
|
6
|
+
const { useTableRow } = SchedulerListConfig.Browser.Table.Column;
|
|
7
|
+
const { row } = useTableRow();
|
|
8
|
+
return /*#__PURE__*/ react.createElement(RowTitle, null, /*#__PURE__*/ react.createElement(RowIcon, null, /*#__PURE__*/ react.createElement(ReactComponent, null)), /*#__PURE__*/ react.createElement(RowText, {
|
|
9
|
+
size: "sm"
|
|
10
|
+
}, row.data.title));
|
|
15
11
|
};
|
|
12
|
+
export { CellTitle };
|
|
16
13
|
|
|
17
14
|
//# sourceMappingURL=CellTitle.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"Presentation/components/Cells/CellTitle/CellTitle.js","sources":["../../../../../src/Presentation/components/Cells/CellTitle/CellTitle.tsx"],"sourcesContent":["import React from \"react\";\nimport { ReactComponent as File } from \"@material-design-icons/svg/outlined/description.svg\";\nimport { RowIcon, RowText, RowTitle } from \"./CellTitle.styled.js\";\nimport { SchedulerListConfig } from \"~/Presentation/configs/index.js\";\n\nexport const CellTitle = () => {\n const { useTableRow } = SchedulerListConfig.Browser.Table.Column;\n const { row } = useTableRow();\n\n return (\n <RowTitle>\n <RowIcon>\n <File />\n </RowIcon>\n <RowText size={\"sm\"}>{row.data.title}</RowText>\n </RowTitle>\n );\n};\n"],"names":["CellTitle","useTableRow","SchedulerListConfig","row","RowTitle","RowIcon","File","RowText"],"mappings":";;;;AAKO,MAAMA,YAAY;IACrB,MAAM,EAAEC,WAAW,EAAE,GAAGC,oBAAoB,OAAO,CAAC,KAAK,CAAC,MAAM;IAChE,MAAM,EAAEC,GAAG,EAAE,GAAGF;IAEhB,OAAO,WAAP,GACI,oBAACG,UAAQA,MAAAA,WAAAA,GACL,oBAACC,SAAOA,MAAAA,WAAAA,GACJ,oBAACC,gBAAIA,QAAAA,WAAAA,GAET,oBAACC,SAAOA;QAAC,MAAM;OAAOJ,IAAI,IAAI,CAAC,KAAK;AAGhD"}
|
|
@@ -6,6 +6,6 @@ export declare const RowIcon: import("@emotion/styled").StyledComponent<{
|
|
|
6
6
|
theme?: import("@emotion/react").Theme;
|
|
7
7
|
as?: React.ElementType;
|
|
8
8
|
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
9
|
-
export declare const RowText: import("@emotion/styled").StyledComponent<import("@webiny/ui
|
|
9
|
+
export declare const RowText: import("@emotion/styled").StyledComponent<import("@webiny/admin-ui").TextProps & {
|
|
10
10
|
theme?: import("@emotion/react").Theme;
|
|
11
11
|
}, {}, {}>;
|