@gooddata/sdk-ui-dashboard 11.37.0-alpha.4 → 11.37.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (265) hide show
  1. package/NOTICE +6 -6
  2. package/esm/__version.d.ts +1 -1
  3. package/esm/__version.js +1 -1
  4. package/esm/_staging/dashboard/dashboardFilterContext.d.ts +6 -1
  5. package/esm/_staging/dashboard/dashboardFilterContext.js +10 -3
  6. package/esm/index.d.ts +12 -11
  7. package/esm/index.js +10 -9
  8. package/esm/internal.d.ts +6 -6
  9. package/esm/internal.js +5 -5
  10. package/esm/model/commandHandlers/filterContext/changeFilterContextSelectionHandler.js +3 -5
  11. package/esm/model/commandHandlers/scheduledEmail/initializeAutomationsHandler.js +22 -8
  12. package/esm/model/events/base.d.ts +1 -1
  13. package/esm/model/events/index.d.ts +2 -1
  14. package/esm/model/events/parameters.d.ts +21 -0
  15. package/esm/model/events/parameters.js +19 -0
  16. package/esm/model/events/userInteraction.d.ts +1 -1
  17. package/esm/model/react/useDashboardCommand.d.ts +1 -0
  18. package/esm/model/react/useDashboardCommandProcessing.d.ts +4 -0
  19. package/esm/model/react/useDashboardUserInteraction.d.ts +1 -0
  20. package/esm/model/react/useDashboardUserInteraction.js +4 -0
  21. package/esm/model/store/tabs/parameters/parametersSelectors.d.ts +37 -1
  22. package/esm/model/store/tabs/parameters/parametersSelectors.js +69 -13
  23. package/esm/presentation/{alerting → automations/alerting}/AlertingDialog.js +1 -1
  24. package/esm/presentation/{alerting → automations/alerting}/AlertingManagementDialog.js +1 -1
  25. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/AlertingDialogHeader.js +1 -1
  26. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/DefaultAlertingDialog.js +13 -13
  27. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/DefaultLoadingAlertingDialog.js +1 -1
  28. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/constants.js +1 -1
  29. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/hooks/useAlertValidation.js +4 -4
  30. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/hooks/useAttributeValuesFromExecResults.d.ts +1 -1
  31. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/hooks/useCreateAlert.d.ts +1 -1
  32. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/hooks/useCreateAlert.js +2 -2
  33. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/hooks/useEditAlert.d.ts +1 -1
  34. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/hooks/useEditAlert.js +12 -12
  35. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/hooks/useOperators.js +1 -1
  36. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/hooks/useThresholdValue.js +1 -1
  37. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/hooks/useUpdateAlert.d.ts +1 -1
  38. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/hooks/useUpdateAlert.js +2 -2
  39. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/cron.js +1 -1
  40. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/granularity.js +1 -0
  41. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/guards.js +1 -1
  42. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/responsive.js +1 -1
  43. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/threshold.js +1 -1
  44. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingManagementDialog/DefaultAlertingManagementDialogContentBasic.js +5 -5
  45. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingManagementDialog/DefaultAlertingManagementDialogContentEnhanced.js +10 -10
  46. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingManagementDialog/DefaultAlertingManagementDialogNew.js +3 -3
  47. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingManagementDialog/components/Alert.js +6 -6
  48. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingManagementDialog/components/AlertDropdown.js +1 -1
  49. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingManagementDialog/components/AlertsList.js +1 -1
  50. package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingManagementDialog/components/DeleteAlertConfirmDialog.js +3 -3
  51. package/esm/presentation/{alerting → automations/alerting}/hooks/useAlertingDialogAccessibility.js +3 -3
  52. package/esm/presentation/{alerting → automations/alerting}/hooks/useGetSupportedMeasures.js +3 -3
  53. package/esm/presentation/{alerting → automations/alerting}/types.d.ts +1 -1
  54. package/esm/presentation/automations/contexts/AutomationsContext.d.ts +9 -0
  55. package/esm/presentation/automations/contexts/AutomationsContext.js +11 -0
  56. package/esm/presentation/automations/contexts/AutomationsContext.test.d.ts +1 -0
  57. package/esm/presentation/automations/contexts/AutomationsContext.test.js +9 -0
  58. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/DefaultLoadingScheduledEmailDialog.js +1 -1
  59. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/DefaultScheduledEmailDialog.js +20 -18
  60. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Attachments/AttachmentSettings.js +1 -1
  61. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Attachments/AttachmentsSelect.js +1 -1
  62. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Attachments/AttachmentsWrapper.js +1 -1
  63. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Attachments/DashboardAttachments.js +1 -1
  64. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Attachments/WidgetAttachments.js +1 -1
  65. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/EvaluationModeCheckbox/EvaluationModeCheckbox.js +1 -1
  66. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Header/ScheduleEmailDialogHeader.js +1 -1
  67. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/MessageForm/MessageForm.js +1 -1
  68. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/RecipientsSelect/RecipientsSelect.js +1 -1
  69. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/RecipientsSelect/RecipientsSelectRenderer.js +1 -1
  70. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/SubjectForm/SubjectForm.js +1 -1
  71. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Textarea.js +1 -1
  72. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/hooks/useCreateScheduledEmail.d.ts +1 -1
  73. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/hooks/useCreateScheduledEmail.js +2 -2
  74. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.d.ts +2 -2
  75. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.js +10 -10
  76. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/hooks/useFiltersForDashboardScheduledExportInfo.d.ts +1 -1
  77. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/hooks/useFiltersForDashboardScheduledExportInfo.js +5 -5
  78. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/hooks/useScheduleValidation.js +2 -2
  79. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/hooks/useUpdateScheduledEmail.d.ts +1 -1
  80. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/hooks/useUpdateScheduledEmail.js +2 -2
  81. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailManagementDialog/DefaultScheduledEmailManagementDialog.js +3 -3
  82. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailManagementDialog/DefaultScheduledEmailManagementDialogContentBasic.js +9 -9
  83. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailManagementDialog/DefaultScheduledEmailManagementDialogContentEnhanced.js +10 -10
  84. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailManagementDialog/components/DeleteScheduleConfirmDialog.js +3 -3
  85. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailManagementDialog/components/ScheduledEmail.js +5 -5
  86. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailManagementDialog/components/ScheduledEmailsList.js +1 -1
  87. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/ScheduledEmailDialog.js +1 -1
  88. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/ScheduledEmailManagementDialog.js +1 -1
  89. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/hooks/useScheduleEmailDialogAccessibility.js +3 -3
  90. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/hooks/useWidgetAutomationFilters.d.ts +2 -2
  91. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/hooks/useWidgetAutomationFilters.js +3 -3
  92. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/types.d.ts +1 -1
  93. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/utils/cron.js +1 -1
  94. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/utils/date.js +1 -1
  95. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/utils/filters.js +1 -1
  96. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/utils/responsive.js +1 -1
  97. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/utils/timezone.js +1 -1
  98. package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/utils/users.js +1 -1
  99. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/components/AutomationAttributeFilter.js +1 -1
  100. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/components/AutomationDateFilter.js +4 -4
  101. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/components/AutomationDateFilterContext.js +1 -1
  102. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/components/AutomationFiltersSelect.d.ts +1 -1
  103. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/components/AutomationFiltersSelect.js +2 -2
  104. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/components/AutomationMeasureValueFilter.js +1 -1
  105. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/hooks/useAutomationVisibleFilters.js +2 -2
  106. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/hooks/useDefaultSelectedFiltersForExistingAutomation.d.ts +1 -1
  107. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/hooks/useDefaultSelectedFiltersForExistingAutomation.js +43 -9
  108. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/hooks/useDefaultSelectedFiltersForNewAutomation.d.ts +1 -1
  109. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/hooks/useDefaultSelectedFiltersForNewAutomation.js +3 -3
  110. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/hooks/useValidateExistingAutomationFilters.d.ts +1 -1
  111. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/hooks/useValidateExistingAutomationFilters.js +10 -7
  112. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/useAutomationFilters.d.ts +1 -1
  113. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/useAutomationFilters.js +9 -9
  114. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/useAutomationFiltersSelect.d.ts +2 -2
  115. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/useAutomationFiltersSelect.js +3 -3
  116. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/utils.d.ts +1 -1
  117. package/esm/presentation/{automationFilters → automations/shared/automationFilters}/utils.js +2 -2
  118. package/esm/presentation/dashboard/DashboardHeader/AlertingDialogProviderNew.js +2 -2
  119. package/esm/presentation/dashboard/DashboardHeader/ScheduledEmailDialogProvider.js +4 -4
  120. package/esm/presentation/dashboard/components/DashboardRenderer.js +4 -4
  121. package/esm/presentation/dashboard/types.d.ts +2 -2
  122. package/esm/presentation/dashboardContexts/DashboardComponentsContext.d.ts +2 -2
  123. package/esm/presentation/filterBar/filterBar/DefaultFilterBarContainer.js +3 -1
  124. package/esm/presentation/filterBar/filterBar/ResetFiltersButton.js +0 -3
  125. package/esm/presentation/filterBar/filterBar/hooks/useResetFiltersButton.js +46 -18
  126. package/esm/presentation/localization/bundles/en-US.localization-bundle.js +3 -3
  127. package/esm/presentation/widget/common/useInsightExport.js +1 -1
  128. package/esm/presentation/widget/insight/configuration/InsightAlertConfig/AlertTitle.d.ts +1 -1
  129. package/esm/presentation/widget/insight/configuration/InsightAlertConfig/AlertTitle.js +1 -1
  130. package/esm/presentation/widget/insight/configuration/InsightAlertConfig/AlertsList.js +2 -2
  131. package/esm/presentation/widget/insight/configuration/InsightAlertConfig/CreateAlert.d.ts +2 -2
  132. package/esm/presentation/widget/insight/configuration/InsightAlertConfig/EditAlert.d.ts +2 -2
  133. package/esm/presentation/widget/insight/configuration/InsightAlertConfig/EditAlert.js +14 -14
  134. package/esm/presentation/widget/insight/configuration/InsightAlertConfig/EditAlertConfiguration.js +1 -1
  135. package/esm/presentation/widget/insight/configuration/InsightAlertConfig/hooks/useEditAlert.d.ts +2 -2
  136. package/esm/presentation/widget/insight/configuration/InsightAlertConfig/hooks/useEditAlert.js +4 -4
  137. package/esm/presentation/widget/insight/configuration/InsightAlertConfig/hooks/useInsightWidgetAlerting.d.ts +3 -3
  138. package/esm/presentation/widget/insight/configuration/InsightAlertConfig/hooks/useInsightWidgetAlerting.js +6 -6
  139. package/esm/presentation/widget/insight/configuration/InsightAlertsNew.js +4 -4
  140. package/esm/sdk-ui-dashboard.d.ts +39 -3
  141. package/package.json +20 -20
  142. package/styles/css/filterBar.css +3 -0
  143. package/styles/css/filterBar.css.map +1 -1
  144. package/styles/css/main.css +3 -0
  145. package/styles/css/main.css.map +1 -1
  146. package/styles/scss/filterBar.scss +4 -0
  147. /package/esm/presentation/{alerting → automations/alerting}/AlertingDialog.d.ts +0 -0
  148. /package/esm/presentation/{alerting → automations/alerting}/AlertingManagementDialog.d.ts +0 -0
  149. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/AlertingDialogHeader.d.ts +0 -0
  150. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/DefaultAlertingDialog.d.ts +0 -0
  151. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/DefaultLoadingAlertingDialog.d.ts +0 -0
  152. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertAttributeSelect.d.ts +0 -0
  153. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertAttributeSelect.js +0 -0
  154. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertComparisonOperatorSelect.d.ts +0 -0
  155. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertComparisonOperatorSelect.js +0 -0
  156. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertComparisonPeriodSelect.d.ts +0 -0
  157. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertComparisonPeriodSelect.js +0 -0
  158. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertDeleteDialog.d.ts +0 -0
  159. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertDeleteDialog.js +0 -0
  160. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertDestinationSelect.d.ts +0 -0
  161. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertDestinationSelect.js +0 -0
  162. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertGranularitySelect.d.ts +0 -0
  163. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertGranularitySelect.js +0 -0
  164. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertMeasureSelect.d.ts +0 -0
  165. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertMeasureSelect.js +0 -0
  166. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertSensitivitySelect.d.ts +0 -0
  167. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertSensitivitySelect.js +0 -0
  168. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertThresholdInput.d.ts +0 -0
  169. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertThresholdInput.js +0 -0
  170. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertTriggerIntervalSelect.d.ts +0 -0
  171. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertTriggerIntervalSelect.js +0 -0
  172. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertTriggerModeSelect.d.ts +0 -0
  173. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/components/AlertTriggerModeSelect.js +0 -0
  174. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/constants.d.ts +0 -0
  175. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/hooks/useAlertValidation.d.ts +0 -0
  176. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/hooks/useAttributeValuesFromExecResults.js +0 -0
  177. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/hooks/useOperators.d.ts +0 -0
  178. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/hooks/useSaveAlertToBackend.d.ts +0 -0
  179. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/hooks/useSaveAlertToBackend.js +0 -0
  180. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/hooks/useThresholdValue.d.ts +0 -0
  181. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/messages.d.ts +0 -0
  182. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/messages.js +0 -0
  183. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/convertors.d.ts +0 -0
  184. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/convertors.js +0 -0
  185. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/cron.d.ts +0 -0
  186. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/getters.d.ts +0 -0
  187. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/getters.js +0 -0
  188. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/granularity.d.ts +0 -0
  189. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/guards.d.ts +0 -0
  190. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/items.d.ts +0 -0
  191. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/items.js +0 -0
  192. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/responsive.d.ts +0 -0
  193. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/threshold.d.ts +0 -0
  194. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/transformation.d.ts +0 -0
  195. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingDialog/utils/transformation.js +0 -0
  196. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingManagementDialog/DefaultAlertingManagementDialogContentBasic.d.ts +0 -0
  197. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingManagementDialog/DefaultAlertingManagementDialogContentEnhanced.d.ts +0 -0
  198. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingManagementDialog/DefaultAlertingManagementDialogNew.d.ts +0 -0
  199. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingManagementDialog/components/Alert.d.ts +0 -0
  200. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingManagementDialog/components/AlertDropdown.d.ts +0 -0
  201. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingManagementDialog/components/AlertsList.d.ts +0 -0
  202. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingManagementDialog/components/DeleteAlertConfirmDialog.d.ts +0 -0
  203. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingManagementDialog/components/PauseAlertRunner.d.ts +0 -0
  204. /package/esm/presentation/{alerting → automations/alerting}/DefaultAlertingManagementDialog/components/PauseAlertRunner.js +0 -0
  205. /package/esm/presentation/{alerting → automations/alerting}/hooks/useAlertingDialogAccessibility.d.ts +0 -0
  206. /package/esm/presentation/{alerting → automations/alerting}/hooks/useGetSupportedMeasures.d.ts +0 -0
  207. /package/esm/presentation/{alerting → automations/alerting}/types.js +0 -0
  208. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/DefaultLoadingScheduledEmailDialog.d.ts +0 -0
  209. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/DefaultScheduledEmailDialog.d.ts +0 -0
  210. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Attachments/AttachmentSettings.d.ts +0 -0
  211. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Attachments/AttachmentsList.d.ts +0 -0
  212. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Attachments/AttachmentsList.js +0 -0
  213. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Attachments/AttachmentsSelect.d.ts +0 -0
  214. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Attachments/AttachmentsWrapper.d.ts +0 -0
  215. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Attachments/DashboardAttachments.d.ts +0 -0
  216. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Attachments/SlidesTemplateSettings.d.ts +0 -0
  217. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Attachments/SlidesTemplateSettings.js +0 -0
  218. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Attachments/WidgetAttachments.d.ts +0 -0
  219. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/DestinationSelect/DestinationSelect.d.ts +0 -0
  220. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/DestinationSelect/DestinationSelect.js +0 -0
  221. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/ErrorWrapper/ErrorWrapper.d.ts +0 -0
  222. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/ErrorWrapper/ErrorWrapper.js +0 -0
  223. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/EvaluationModeCheckbox/EvaluationModeCheckbox.d.ts +0 -0
  224. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Header/ScheduleEmailDialogHeader.d.ts +0 -0
  225. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/MessageForm/MessageForm.d.ts +0 -0
  226. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/RecipientsSelect/RecipientsSelect.d.ts +0 -0
  227. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/RecipientsSelect/RecipientsSelectRenderer.d.ts +0 -0
  228. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/SubjectForm/SubjectForm.d.ts +0 -0
  229. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/components/Textarea.d.ts +0 -0
  230. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/constants.d.ts +0 -0
  231. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/constants.js +0 -0
  232. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/hooks/useSaveScheduledEmailToBackend.d.ts +0 -0
  233. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/hooks/useSaveScheduledEmailToBackend.js +0 -0
  234. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailDialog/hooks/useScheduleValidation.d.ts +0 -0
  235. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailManagementDialog/DefaultScheduledEmailManagementDialog.d.ts +0 -0
  236. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailManagementDialog/DefaultScheduledEmailManagementDialogContentBasic.d.ts +0 -0
  237. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailManagementDialog/DefaultScheduledEmailManagementDialogContentEnhanced.d.ts +0 -0
  238. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailManagementDialog/components/DeleteScheduleConfirmDialog.d.ts +0 -0
  239. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailManagementDialog/components/ScheduledEmail.d.ts +0 -0
  240. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/DefaultScheduledEmailManagementDialog/components/ScheduledEmailsList.d.ts +0 -0
  241. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/ScheduledEmailDialog.d.ts +0 -0
  242. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/ScheduledEmailManagementDialog.d.ts +0 -0
  243. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/hooks/useScheduleEmailDialogAccessibility.d.ts +0 -0
  244. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/types.js +0 -0
  245. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/utils/cron.d.ts +0 -0
  246. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/utils/date.d.ts +0 -0
  247. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/utils/filters.d.ts +0 -0
  248. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/utils/pdfPageSize.d.ts +0 -0
  249. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/utils/pdfPageSize.js +0 -0
  250. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/utils/responsive.d.ts +0 -0
  251. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/utils/timezone.d.ts +0 -0
  252. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/utils/users.d.ts +0 -0
  253. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/utils/validate.d.ts +0 -0
  254. /package/esm/presentation/{scheduledEmail → automations/scheduledEmail}/utils/validate.js +0 -0
  255. /package/esm/presentation/{automationFilters → automations/shared/automationFilters}/components/ApplyLatestFiltersConfirmDialog.d.ts +0 -0
  256. /package/esm/presentation/{automationFilters → automations/shared/automationFilters}/components/ApplyLatestFiltersConfirmDialog.js +0 -0
  257. /package/esm/presentation/{automationFilters → automations/shared/automationFilters}/components/AutomationAttributeFilter.d.ts +0 -0
  258. /package/esm/presentation/{automationFilters → automations/shared/automationFilters}/components/AutomationAttributeFilterContext.d.ts +0 -0
  259. /package/esm/presentation/{automationFilters → automations/shared/automationFilters}/components/AutomationAttributeFilterContext.js +0 -0
  260. /package/esm/presentation/{automationFilters → automations/shared/automationFilters}/components/AutomationDateFilter.d.ts +0 -0
  261. /package/esm/presentation/{automationFilters → automations/shared/automationFilters}/components/AutomationDateFilterContext.d.ts +0 -0
  262. /package/esm/presentation/{automationFilters → automations/shared/automationFilters}/components/AutomationMeasureValueFilter.d.ts +0 -0
  263. /package/esm/presentation/{automationFilters → automations/shared/automationFilters}/components/AutomationMeasureValueFilterContext.d.ts +0 -0
  264. /package/esm/presentation/{automationFilters → automations/shared/automationFilters}/components/AutomationMeasureValueFilterContext.js +0 -0
  265. /package/esm/presentation/{automationFilters → automations/shared/automationFilters}/hooks/useAutomationVisibleFilters.d.ts +0 -0
@@ -5,21 +5,22 @@ import cx from "classnames";
5
5
  import { defineMessage, useIntl } from "react-intl";
6
6
  import { ValidationContextStore, createInvalidNode, useValidationContextValue } from "@gooddata/sdk-ui";
7
7
  import { Button, ConfirmDialogBase, ContentDivider, Hyperlink, Message, Overlay, OverlayController, OverlayControllerProvider, RecurrenceForm, ScrollablePanel, UiIcon, UiTabs, isEnterKey, useIdPrefixed, } from "@gooddata/sdk-ui-kit";
8
- import { useDashboardSelector } from "../../../model/react/DashboardStoreProvider.js";
9
- import { useExportTemplates } from "../../../model/react/useExportTemplates.js";
10
- import { selectDateFormat, selectEnableAutomationManagement, selectEnableCustomizableCsvDelimiter, selectEnableNewScheduledExport, selectExternalRecipient, selectIsWhiteLabeled, selectLocale, selectSettings, selectWeekStart, } from "../../../model/store/config/configSelectors.js";
11
- import { selectIsCrossFiltering } from "../../../model/store/drill/drillSelectors.js";
12
- import { selectEntitlementMinimumRecurrenceMinutes, selectMaxAutomationRecipients, } from "../../../model/store/entitlements/entitlementsSelectors.js";
13
- import { selectDashboardTitle } from "../../../model/store/meta/metaSelectors.js";
14
- import { selectIsAutomationDialogSecondaryTitleVisible } from "../../../model/store/topBar/topBarSelectors.js";
15
- import { selectExecutionTimestamp } from "../../../model/store/ui/uiSelectors.js";
16
- import { getWidgetTitle } from "../../../model/utils/dashboardItemUtils.js";
17
- import { ApplyCurrentFiltersConfirmDialog } from "../../automationFilters/components/ApplyLatestFiltersConfirmDialog.js";
18
- import { AutomationFiltersSelect } from "../../automationFilters/components/AutomationFiltersSelect.js";
19
- import { useValidateExistingAutomationFilters } from "../../automationFilters/hooks/useValidateExistingAutomationFilters.js";
20
- import { useAutomationFiltersSelect } from "../../automationFilters/useAutomationFiltersSelect.js";
21
- import { DASHBOARD_DIALOG_OVERS_Z_INDEX } from "../../constants/zIndex.js";
22
- import { IntlWrapper } from "../../localization/IntlWrapper.js";
8
+ import { useDashboardSelector } from "../../../../model/react/DashboardStoreProvider.js";
9
+ import { useExportTemplates } from "../../../../model/react/useExportTemplates.js";
10
+ import { selectDateFormat, selectEnableAutomationManagement, selectEnableCustomizableCsvDelimiter, selectEnableNewScheduledExport, selectExternalRecipient, selectIsWhiteLabeled, selectLocale, selectSettings, selectWeekStart, } from "../../../../model/store/config/configSelectors.js";
11
+ import { selectIsCrossFiltering } from "../../../../model/store/drill/drillSelectors.js";
12
+ import { selectEntitlementMinimumRecurrenceMinutes, selectMaxAutomationRecipients, } from "../../../../model/store/entitlements/entitlementsSelectors.js";
13
+ import { selectDashboardTitle } from "../../../../model/store/meta/metaSelectors.js";
14
+ import { selectTabs } from "../../../../model/store/tabs/tabsSelectors.js";
15
+ import { selectIsAutomationDialogSecondaryTitleVisible } from "../../../../model/store/topBar/topBarSelectors.js";
16
+ import { selectExecutionTimestamp } from "../../../../model/store/ui/uiSelectors.js";
17
+ import { getWidgetTitle } from "../../../../model/utils/dashboardItemUtils.js";
18
+ import { DASHBOARD_DIALOG_OVERS_Z_INDEX } from "../../../constants/zIndex.js";
19
+ import { IntlWrapper } from "../../../localization/IntlWrapper.js";
20
+ import { ApplyCurrentFiltersConfirmDialog } from "../../shared/automationFilters/components/ApplyLatestFiltersConfirmDialog.js";
21
+ import { AutomationFiltersSelect } from "../../shared/automationFilters/components/AutomationFiltersSelect.js";
22
+ import { useValidateExistingAutomationFilters } from "../../shared/automationFilters/hooks/useValidateExistingAutomationFilters.js";
23
+ import { useAutomationFiltersSelect } from "../../shared/automationFilters/useAutomationFiltersSelect.js";
23
24
  import { DeleteScheduleConfirmDialog } from "../DefaultScheduledEmailManagementDialog/components/DeleteScheduleConfirmDialog.js";
24
25
  import { useScheduleEmailDialogAccessibility } from "../hooks/useScheduleEmailDialogAccessibility.js";
25
26
  import { getDefaultCronExpression } from "../utils/cron.js";
@@ -58,6 +59,8 @@ export function ScheduledMailDialogRenderer({ scheduledExportToEdit, users, user
58
59
  const externalRecipientOverride = useDashboardSelector(selectExternalRecipient);
59
60
  const isSecondaryTitleVisible = useDashboardSelector(selectIsAutomationDialogSecondaryTitleVisible);
60
61
  const enableAutomationManagement = useDashboardSelector(selectEnableAutomationManagement);
62
+ const dashboardTabs = useDashboardSelector(selectTabs);
63
+ const hasMultipleTabs = (dashboardTabs?.length ?? 0) > 1;
61
64
  const exportTemplates = useExportTemplates();
62
65
  const handleScheduleDeleteSuccess = () => {
63
66
  onDeleteSuccess?.();
@@ -206,10 +209,9 @@ export function ScheduledMailDialogRenderer({ scheduledExportToEdit, users, user
206
209
  }), children: [
207
210
  _jsx("div", { className: "gd-divider-with-margin" }), selectedTabId === "filters" ? (_jsx("div", { ref: filtersTabContentRef, className: "gd-schedule-dialog-tab-content", style: tabContentHeight
208
211
  ? { minHeight: `${tabContentHeight}px` }
209
- : undefined, children: _jsx(AutomationFiltersSelect, { availableFilters: availableFilters, selectedFilters: editedAutomationFilters, onFiltersChange: onFiltersChange, storeFilters: storeFilters, onStoreFiltersChange: onStoreFiltersChange, isDashboardAutomation: !widget, overlayPositionType: OVERLAY_POSITION_TYPE, hideTitle: true, showAllFilters: true, filtersByTab: filtersByTab, editedFiltersByTab: editedAutomationFiltersByTab, onFiltersByTabChange: onFiltersByTabChange }) })) : (_jsxs("div", { ref: generalTabContentRef, className: "gd-schedule-dialog-tab-content", children: [
210
- _jsx(Message, { type: "progress", className: "gd-schedule-dialog-tab-content-info", children: intl.formatMessage({
212
+ : undefined, children: _jsx(AutomationFiltersSelect, { availableFilters: availableFilters, selectedFilters: editedAutomationFilters, onFiltersChange: onFiltersChange, storeFilters: storeFilters, onStoreFiltersChange: onStoreFiltersChange, isDashboardAutomation: !widget, overlayPositionType: OVERLAY_POSITION_TYPE, hideTitle: true, showAllFilters: true, filtersByTab: filtersByTab, editedFiltersByTab: editedAutomationFiltersByTab, onFiltersByTabChange: onFiltersByTabChange }) })) : (_jsxs("div", { ref: generalTabContentRef, className: "gd-schedule-dialog-tab-content", children: [!widget && hasMultipleTabs ? (_jsx(Message, { type: "progress", className: "gd-schedule-dialog-tab-content-info", children: intl.formatMessage({
211
213
  id: "dialogs.schedule.email.tabs.info",
212
- }) }), _jsx(RecurrenceForm, { startDate: startDate, cronExpression: editedAutomation.schedule?.cron ??
214
+ }) })) : null, _jsx(RecurrenceForm, { startDate: startDate, cronExpression: editedAutomation.schedule?.cron ??
213
215
  getDefaultCronExpression(startDate), cronDescription: editedAutomation.schedule?.cronDescription, timezone: editedAutomation.schedule?.timezone ??
214
216
  TIMEZONE_DEFAULT.identifier, dateFormat: dateFormat ?? "MM/dd/yyyy", locale: locale, weekStart: weekStart, onChange: onRecurrenceChange, allowHourlyRecurrence: allowHourlyRecurrence, isWhiteLabeled: isWhiteLabeled, closeDropdownsOnParentScroll: CLOSE_ON_PARENT_SCROLL, onKeyDownSubmit: handleSubmitForm }), _jsx(ContentDivider, { className: "gd-divider-with-margin" }), _jsx(DestinationSelect, { notificationChannels: notificationChannels, selectedItemId: editedAutomation.notificationChannel, onChange: onDestinationChange, closeOnParentScroll: CLOSE_ON_PARENT_SCROLL, overlayPositionType: OVERLAY_POSITION_TYPE }), _jsx(ContentDivider, { className: "gd-divider-with-margin" }), _jsx(RecipientsSelect, { id: "schedule.email.recipients", loggedUser: defaultUser, users: users, usersError: usersError, value: editedAutomation.recipients ?? [], originalValue: originalAutomation.recipients || [], onChange: onRecipientsChange, allowEmptySelection: true, allowOnlyLoggedUserRecipients: allowOnlyLoggedUserRecipients, allowExternalRecipients: allowExternalRecipients, maxRecipients: maxAutomationsRecipients, notificationChannels: notificationChannels, notificationChannelId: editedAutomation.notificationChannel, onKeyDownSubmit: handleSubmitForm, externalRecipientOverride: externalRecipientOverride }), isInPlatformChannel ? null : (_jsxs(_Fragment, { children: [
215
217
  _jsx(SubjectForm, { dashboardTitle: dashboardTitle, editedAutomation: editedAutomation, onChange: onSubjectChange, onKeyDownSubmit: handleSaveScheduledEmail, isSubmitDisabled: isSubmitDisabled }), _jsx(MessageForm, { onChange: onMessageChange, value: editedAutomation.details?.message ?? "" })
@@ -4,7 +4,7 @@ import { useId, useMemo, useState } from "react";
4
4
  import { FormattedMessage, useIntl } from "react-intl";
5
5
  import { DEFAULT_CSV_DELIMITER, getCsvDelimiterState, getCsvDelimiterValidationError, getCsvDelimiterValue, } from "@gooddata/sdk-model";
6
6
  import { Button, ContentDivider, CsvDelimiterPicker, Dropdown, DropdownButton, UiIcon, UiMenu, isEscapeKey, } from "@gooddata/sdk-ui-kit";
7
- import { AUTOMATION_ATTACHMENT_SETTINGS_DIALOG_TITLE_ID } from "../../../../constants/automations.js";
7
+ import { AUTOMATION_ATTACHMENT_SETTINGS_DIALOG_TITLE_ID } from "../../../../../constants/automations.js";
8
8
  const DROPDOWN_ALIGN_POINTS = [
9
9
  {
10
10
  align: "bc tc",
@@ -3,7 +3,7 @@ import { Fragment as _Fragment, jsx as _jsx, jsxs as _jsxs } from "react/jsx-run
3
3
  import { useState } from "react";
4
4
  import { FormattedMessage, useIntl } from "react-intl";
5
5
  import { Button, ContentDivider, Dropdown, Message, UiIconButton, UiTooltip, isEscapeKey, } from "@gooddata/sdk-ui-kit";
6
- import { AUTOMATION_ATTACHMENTS_DIALOG_TITLE_ID } from "../../../../constants/automations.js";
6
+ import { AUTOMATION_ATTACHMENTS_DIALOG_TITLE_ID } from "../../../../../constants/automations.js";
7
7
  export const widgetAttachmentLabels = {
8
8
  PNG: _jsx(FormattedMessage, { id: "scheduledEmail.attachmentFormat.widget.png" }),
9
9
  PPTX: _jsx(FormattedMessage, { id: "scheduledEmail.attachmentFormat.widget.pptx" }),
@@ -1,6 +1,6 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { FormattedMessage } from "react-intl";
3
- import { AUTOMATION_ATTACHMENTS_GROUP_LABEL_ID } from "../../../../constants/automations.js";
3
+ import { AUTOMATION_ATTACHMENTS_GROUP_LABEL_ID } from "../../../../../constants/automations.js";
4
4
  export function AttachmentsWrapper({ children }) {
5
5
  return (_jsxs("fieldset", { className: "gd-input-component gd-notifications-channels-attachments s-notifications-channels-attachments", children: [
6
6
  _jsx("div", { className: "gd-label", id: AUTOMATION_ATTACHMENTS_GROUP_LABEL_ID, children: _jsx(FormattedMessage, { id: "dialogs.schedule.email.attachments.label" }) }), children] }));
@@ -3,7 +3,7 @@ import { Fragment as _Fragment, jsx as _jsx, jsxs as _jsxs } from "react/jsx-run
3
3
  import { useCallback, useRef, useState } from "react";
4
4
  import { FormattedMessage, useIntl } from "react-intl";
5
5
  import { Message } from "@gooddata/sdk-ui-kit";
6
- import { AUTOMATION_ATTACHMENTS_GROUP_LABEL_ID } from "../../../../constants/automations.js";
6
+ import { AUTOMATION_ATTACHMENTS_GROUP_LABEL_ID } from "../../../../../constants/automations.js";
7
7
  import { AttachmentsList } from "./AttachmentsList.js";
8
8
  import { AttachmentsSelect } from "./AttachmentsSelect.js";
9
9
  import { AttachmentsWrapper } from "./AttachmentsWrapper.js";
@@ -2,7 +2,7 @@ import { Fragment as _Fragment, jsx as _jsx, jsxs as _jsxs } from "react/jsx-run
2
2
  // (C) 2019-2026 GoodData Corporation
3
3
  import { useCallback, useRef, useState } from "react";
4
4
  import { useIntl } from "react-intl";
5
- import { AUTOMATION_ATTACHMENTS_GROUP_LABEL_ID } from "../../../../constants/automations.js";
5
+ import { AUTOMATION_ATTACHMENTS_GROUP_LABEL_ID } from "../../../../../constants/automations.js";
6
6
  import { AttachmentsList } from "./AttachmentsList.js";
7
7
  import { AttachmentsSelect } from "./AttachmentsSelect.js";
8
8
  import { AttachmentsWrapper } from "./AttachmentsWrapper.js";
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- // (C) 2025 GoodData Corporation
2
+ // (C) 2025-2026 GoodData Corporation
3
3
  import { useIntl } from "react-intl";
4
4
  import { Checkbox, UiIcon, UiTooltip } from "@gooddata/sdk-ui-kit";
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- // (C) 2025 GoodData Corporation
2
+ // (C) 2025-2026 GoodData Corporation
3
3
  import { forwardRef, useCallback, } from "react";
4
4
  import cx from "classnames";
5
5
  import { useIntl } from "react-intl";
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- // (C) 2025 GoodData Corporation
2
+ // (C) 2025-2026 GoodData Corporation
3
3
  import { useCallback, useRef } from "react";
4
4
  import { useIntl } from "react-intl";
5
5
  import { ValidationContextStore, createInvalidDatapoint, createInvalidNode, useValidationContextValue, } from "@gooddata/sdk-ui";
@@ -2,7 +2,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
2
2
  // (C) 2019-2026 GoodData Corporation
3
3
  import { useCallback, useMemo, useState } from "react";
4
4
  import { sortBy } from "lodash-es";
5
- import { convertUserToAutomationRecipient } from "../../../../../_staging/automation/index.js";
5
+ import { convertUserToAutomationRecipient } from "../../../../../../_staging/automation/index.js";
6
6
  import { createUser, matchUser } from "../../../utils/users.js";
7
7
  import { isEmail } from "../../../utils/validate.js";
8
8
  import { RecipientsSelectRenderer } from "./RecipientsSelectRenderer.js";
@@ -8,7 +8,7 @@ import ReactSelect, { components as ReactSelectComponents, } from "react-select"
8
8
  import { isAutomationUserRecipient, } from "@gooddata/sdk-model";
9
9
  import { ValidationContextStore, createInvalidDatapoint, createInvalidNode, useValidationContextValue, } from "@gooddata/sdk-ui";
10
10
  import { LoadingMask, Message, Overlay, OverlayController, OverlayControllerProvider, UiIcon, UiTooltip, isEscapeKey, makeKeyboardNavigation, } from "@gooddata/sdk-ui-kit";
11
- import { DASHBOARD_DIALOG_OVERS_Z_INDEX } from "../../../../constants/zIndex.js";
11
+ import { DASHBOARD_DIALOG_OVERS_Z_INDEX } from "../../../../../constants/zIndex.js";
12
12
  import { matchRecipient } from "../../../utils/users.js";
13
13
  import { isEmail } from "../../../utils/validate.js";
14
14
  const MAXIMUM_RECIPIENTS_RECEIVE = 60;
@@ -4,7 +4,7 @@ import { useCallback } from "react";
4
4
  import { useIntl } from "react-intl";
5
5
  import { ValidationContextStore, createInvalidDatapoint, createInvalidNode, useValidationContextValue, } from "@gooddata/sdk-ui";
6
6
  import { Input, useIdPrefixed } from "@gooddata/sdk-ui-kit";
7
- import { DASHBOARD_TITLE_MAX_LENGTH } from "../../../../../presentation/constants/dashboard.js";
7
+ import { DASHBOARD_TITLE_MAX_LENGTH } from "../../../../../constants/dashboard.js";
8
8
  import { ErrorWrapper } from "../ErrorWrapper/ErrorWrapper.js";
9
9
  const MAX_SUBJECT_LENGTH = 255;
10
10
  export function SubjectForm({ dashboardTitle, editedAutomation, isSubmitDisabled, onChange, onKeyDownSubmit, }) {
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- // (C) 2019-2025 GoodData Corporation
2
+ // (C) 2019-2026 GoodData Corporation
3
3
  import { forwardRef, memo, useCallback } from "react";
4
4
  import cx from "classnames";
5
5
  export const Textarea = memo(forwardRef(function Textarea({ hasError = false, hasWarning = false, maxlength, id, placeholder, value, rows, onChange, onFocus, onBlur, validationError, autocomplete, accessibilityConfig, }, ref) {
@@ -1,5 +1,5 @@
1
1
  import { type IAutomationMetadataObject, type IAutomationMetadataObjectDefinition } from "@gooddata/sdk-model";
2
- import { type CommandProcessingStatus } from "../../../../model/react/useDashboardCommandProcessing.js";
2
+ import { type CommandProcessingStatus } from "../../../../../model/react/useDashboardCommandProcessing.js";
3
3
  export declare const useCreateScheduledEmail: ({ onBeforeRun, onSuccess, onError, }?: {
4
4
  onBeforeRun?: ((scheduledEmailToCreate: IAutomationMetadataObjectDefinition) => void) | undefined;
5
5
  onSuccess?: ((scheduledEmail: IAutomationMetadataObject) => void) | undefined;
@@ -1,7 +1,7 @@
1
1
  // (C) 2020-2026 GoodData Corporation
2
2
  import { useCallback } from "react";
3
- import { createScheduledEmail } from "../../../../model/commands/scheduledEmail.js";
4
- import { useDashboardCommandProcessing, } from "../../../../model/react/useDashboardCommandProcessing.js";
3
+ import { createScheduledEmail } from "../../../../../model/commands/scheduledEmail.js";
4
+ import { useDashboardCommandProcessing, } from "../../../../../model/react/useDashboardCommandProcessing.js";
5
5
  export const useCreateScheduledEmail = ({ onBeforeRun, onSuccess, onError, } = {}) => {
6
6
  const scheduledEmailCommandProcessing = useDashboardCommandProcessing({
7
7
  commandCreator: createScheduledEmail,
@@ -1,6 +1,6 @@
1
1
  import { type DashboardAttachmentType, type FilterContextItem, type IAutomationMetadataObject, type IAutomationMetadataObjectDefinition, type IAutomationRecipient, type IAutomationVisibleFilter, type IExportDefinitionVisualizationObjectSettings, type IFilter, type IInsight, type INotificationChannelIdentifier, type INotificationChannelMetadataObject, type WidgetAttachmentType } from "@gooddata/sdk-model";
2
- import { type IAutomationFiltersTab } from "../../../../model/store/filtering/dashboardFilterSelectors.js";
3
- import { type ExtendedDashboardWidget } from "../../../../model/types/layoutTypes.js";
2
+ import { type IAutomationFiltersTab } from "../../../../../model/store/filtering/dashboardFilterSelectors.js";
3
+ import { type ExtendedDashboardWidget } from "../../../../../model/types/layoutTypes.js";
4
4
  export interface IUseEditScheduledEmailProps {
5
5
  scheduledExportToEdit?: IAutomationMetadataObject;
6
6
  notificationChannels: INotificationChannelIdentifier[] | INotificationChannelMetadataObject[];
@@ -3,16 +3,16 @@ import { useCallback, useMemo, useState } from "react";
3
3
  import { useIntl } from "react-intl";
4
4
  import { invariant } from "ts-invariant";
5
5
  import { DEFAULT_CSV_DELIMITER, insightProperties, isAutomationExternalUserRecipient, isAutomationUnknownUserRecipient, isAutomationUserRecipient, isExportDefinitionDashboardRequestPayload, isExportDefinitionVisualizationObjectRequestPayload, isInsightWidget, isWidget, } from "@gooddata/sdk-model";
6
- import { areAutomationsEqual, convertCurrentUserToAutomationRecipient, convertCurrentUserToWorkspaceUser, convertExternalRecipientToAutomationRecipient, } from "../../../../_staging/automation/index.js";
7
- import { useDashboardSelector } from "../../../../model/react/DashboardStoreProvider.js";
8
- import { selectEnableAutomationEvaluationMode, selectEnableExternalRecipients, selectSettings, selectTimezone, } from "../../../../model/store/config/configSelectors.js";
9
- import { selectAutomationCommonDateFilterId, selectDashboardHiddenFilters, } from "../../../../model/store/filtering/dashboardFilterSelectors.js";
10
- import { selectDashboardId, selectDashboardTitle } from "../../../../model/store/meta/metaSelectors.js";
11
- import { selectWidgetLocalIdToTabIdMap } from "../../../../model/store/tabs/layout/layoutSelectors.js";
12
- import { selectCurrentUser } from "../../../../model/store/user/userSelectors.js";
13
- import { selectUsers } from "../../../../model/store/users/usersSelectors.js";
14
- import { getDefaultSelectedFiltersFromFiltersByTab } from "../../../automationFilters/useAutomationFiltersSelect.js";
15
- import { getAppliedDashboardFilters, getAppliedWidgetFilters, getVisibleFiltersByFilters, getVisibleFiltersByFiltersByTab, } from "../../../automationFilters/utils.js";
6
+ import { areAutomationsEqual, convertCurrentUserToAutomationRecipient, convertCurrentUserToWorkspaceUser, convertExternalRecipientToAutomationRecipient, } from "../../../../../_staging/automation/index.js";
7
+ import { useDashboardSelector } from "../../../../../model/react/DashboardStoreProvider.js";
8
+ import { selectEnableAutomationEvaluationMode, selectEnableExternalRecipients, selectSettings, selectTimezone, } from "../../../../../model/store/config/configSelectors.js";
9
+ import { selectAutomationCommonDateFilterId, selectDashboardHiddenFilters, } from "../../../../../model/store/filtering/dashboardFilterSelectors.js";
10
+ import { selectDashboardId, selectDashboardTitle } from "../../../../../model/store/meta/metaSelectors.js";
11
+ import { selectWidgetLocalIdToTabIdMap } from "../../../../../model/store/tabs/layout/layoutSelectors.js";
12
+ import { selectCurrentUser } from "../../../../../model/store/user/userSelectors.js";
13
+ import { selectUsers } from "../../../../../model/store/users/usersSelectors.js";
14
+ import { getDefaultSelectedFiltersFromFiltersByTab } from "../../../shared/automationFilters/useAutomationFiltersSelect.js";
15
+ import { getAppliedDashboardFilters, getAppliedWidgetFilters, getVisibleFiltersByFilters, getVisibleFiltersByFiltersByTab, } from "../../../shared/automationFilters/utils.js";
16
16
  import { toModifiedISOStringToTimezone, toNormalizedFirstRunAndCron, toNormalizedStartDate, } from "../../utils/date.js";
17
17
  import { getUserTimezone } from "../../utils/timezone.js";
18
18
  import { isEmail } from "../../utils/validate.js";
@@ -14,5 +14,5 @@ interface IUseFiltersForDashboardScheduledExportInfoProps {
14
14
  */
15
15
  effectiveFilters?: FilterContextItem[];
16
16
  }
17
- export declare const useFiltersForDashboardScheduledExportInfo: ({ effectiveFilters, }: IUseFiltersForDashboardScheduledExportInfoProps) => import("../../../../_staging/sharedHooks/useFiltersNamings.js").FilterNaming[];
17
+ export declare const useFiltersForDashboardScheduledExportInfo: ({ effectiveFilters, }: IUseFiltersForDashboardScheduledExportInfoProps) => import("../../../../../_staging/sharedHooks/useFiltersNamings.js").FilterNaming[];
18
18
  export {};
@@ -1,11 +1,11 @@
1
1
  // (C) 2024-2026 GoodData Corporation
2
2
  import { compact } from "lodash-es";
3
3
  import { DashboardAttributeFilterConfigModeValues, DashboardDateFilterConfigModeValues, dashboardAttributeFilterItemLocalIdentifier, isDashboardAttributeFilterItem, isDashboardCommonDateFilter, isDashboardDateFilter, } from "@gooddata/sdk-model";
4
- import { useFiltersNamings } from "../../../../_staging/sharedHooks/useFiltersNamings.js";
5
- import { useDashboardSelector } from "../../../../model/react/DashboardStoreProvider.js";
6
- import { selectEffectiveAttributeFiltersModeMap } from "../../../../model/store/tabs/attributeFilterConfigs/attributeFilterConfigsSelectors.js";
7
- import { selectEffectiveDateFilterMode } from "../../../../model/store/tabs/dateFilterConfig/dateFilterConfigSelectors.js";
8
- import { selectEffectiveDateFiltersModeMap } from "../../../../model/store/tabs/dateFilterConfigs/dateFilterConfigsSelectors.js";
4
+ import { useFiltersNamings } from "../../../../../_staging/sharedHooks/useFiltersNamings.js";
5
+ import { useDashboardSelector } from "../../../../../model/react/DashboardStoreProvider.js";
6
+ import { selectEffectiveAttributeFiltersModeMap } from "../../../../../model/store/tabs/attributeFilterConfigs/attributeFilterConfigsSelectors.js";
7
+ import { selectEffectiveDateFilterMode } from "../../../../../model/store/tabs/dateFilterConfig/dateFilterConfigSelectors.js";
8
+ import { selectEffectiveDateFiltersModeMap } from "../../../../../model/store/tabs/dateFilterConfigs/dateFilterConfigsSelectors.js";
9
9
  export const useFiltersForDashboardScheduledExportInfo = ({ effectiveFilters = [], }) => {
10
10
  // Remove hidden dashboard filters, we don't want to display them.
11
11
  const commonDateFilterMode = useDashboardSelector(selectEffectiveDateFilterMode);
@@ -1,7 +1,7 @@
1
1
  // (C) 2024-2026 GoodData Corporation
2
2
  import { isExportDefinitionDashboardRequestPayload, isExportDefinitionVisualizationObjectRequestPayload, } from "@gooddata/sdk-model";
3
- import { useDashboardSelector } from "../../../../model/react/DashboardStoreProvider.js";
4
- import { selectWidgetByRef } from "../../../../model/store/tabs/layout/layoutSelectors.js";
3
+ import { useDashboardSelector } from "../../../../../model/react/DashboardStoreProvider.js";
4
+ import { selectWidgetByRef } from "../../../../../model/store/tabs/layout/layoutSelectors.js";
5
5
  export const useScheduleValidation = (schedule) => {
6
6
  const isDashboardSchedule = schedule.exportDefinitions?.some((exportDefinition) => isExportDefinitionDashboardRequestPayload(exportDefinition.requestPayload));
7
7
  const widgetLocalId = schedule.exportDefinitions?.find((exportDefinition) => isExportDefinitionVisualizationObjectRequestPayload(exportDefinition.requestPayload))?.requestPayload.content?.widget;
@@ -1,5 +1,5 @@
1
1
  import { type IAutomationMetadataObject } from "@gooddata/sdk-model";
2
- import { type CommandProcessingStatus } from "../../../../model/react/useDashboardCommandProcessing.js";
2
+ import { type CommandProcessingStatus } from "../../../../../model/react/useDashboardCommandProcessing.js";
3
3
  export declare const useUpdateScheduledEmail: ({ onBeforeRun, onSuccess, onError, }?: {
4
4
  onBeforeRun?: ((scheduledEmailToSave: IAutomationMetadataObject) => void) | undefined;
5
5
  onSuccess?: (() => void) | undefined;
@@ -1,7 +1,7 @@
1
1
  // (C) 2020-2026 GoodData Corporation
2
2
  import { useCallback } from "react";
3
- import { saveScheduledEmail } from "../../../../model/commands/scheduledEmail.js";
4
- import { useDashboardCommandProcessing, } from "../../../../model/react/useDashboardCommandProcessing.js";
3
+ import { saveScheduledEmail } from "../../../../../model/commands/scheduledEmail.js";
4
+ import { useDashboardCommandProcessing, } from "../../../../../model/react/useDashboardCommandProcessing.js";
5
5
  export const useUpdateScheduledEmail = ({ onBeforeRun, onSuccess, onError, } = {}) => {
6
6
  const scheduledEmailCommandProcessing = useDashboardCommandProcessing({
7
7
  commandCreator: saveScheduledEmail,
@@ -2,9 +2,9 @@ import { Fragment as _Fragment, jsx as _jsx, jsxs as _jsxs } from "react/jsx-run
2
2
  // (C) 2022-2026 GoodData Corporation
3
3
  import { useCallback, useState } from "react";
4
4
  import { buildAutomationUrl, navigate, useWorkspace } from "@gooddata/sdk-ui";
5
- import { useDashboardSelector } from "../../../model/react/DashboardStoreProvider.js";
6
- import { selectEnableAutomationManagement, selectExternalRecipient, selectIsEmbedded, } from "../../../model/store/config/configSelectors.js";
7
- import { selectDashboardId } from "../../../model/store/meta/metaSelectors.js";
5
+ import { useDashboardSelector } from "../../../../model/react/DashboardStoreProvider.js";
6
+ import { selectEnableAutomationManagement, selectExternalRecipient, selectIsEmbedded, } from "../../../../model/store/config/configSelectors.js";
7
+ import { selectDashboardId } from "../../../../model/store/meta/metaSelectors.js";
8
8
  import { DeleteScheduleConfirmDialog } from "./components/DeleteScheduleConfirmDialog.js";
9
9
  import { DefaultScheduledEmailManagementDialogContentBasic } from "./DefaultScheduledEmailManagementDialogContentBasic.js";
10
10
  import { DefaultScheduledEmailManagementDialogContentEnhanced } from "./DefaultScheduledEmailManagementDialogContentEnhanced.js";
@@ -3,15 +3,15 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  import { useMemo } from "react";
4
4
  import { FormattedMessage, defineMessage, useIntl } from "react-intl";
5
5
  import { AddButton, Button, Dialog, Hyperlink, OverlayController, OverlayControllerProvider, Typography, useId, } from "@gooddata/sdk-ui-kit";
6
- import { messages } from "../../../locales.js";
7
- import { useDashboardSelector } from "../../../model/react/DashboardStoreProvider.js";
8
- import { DEFAULT_MAX_AUTOMATIONS } from "../../../model/react/useDashboardAutomations/constants.js";
9
- import { selectIsWhiteLabeled } from "../../../model/store/config/configSelectors.js";
10
- import { selectEntitlementMaxAutomations, selectEntitlementUnlimitedAutomations, } from "../../../model/store/entitlements/entitlementsSelectors.js";
11
- import { selectCanCreateAutomation } from "../../../model/store/permissions/permissionsSelectors.js";
12
- import { selectExecutionTimestamp } from "../../../model/store/ui/uiSelectors.js";
13
- import { selectCurrentUser } from "../../../model/store/user/userSelectors.js";
14
- import { DASHBOARD_DIALOG_OVERS_Z_INDEX } from "../../constants/zIndex.js";
6
+ import { messages } from "../../../../locales.js";
7
+ import { useDashboardSelector } from "../../../../model/react/DashboardStoreProvider.js";
8
+ import { DEFAULT_MAX_AUTOMATIONS } from "../../../../model/react/useDashboardAutomations/constants.js";
9
+ import { selectIsWhiteLabeled } from "../../../../model/store/config/configSelectors.js";
10
+ import { selectEntitlementMaxAutomations, selectEntitlementUnlimitedAutomations, } from "../../../../model/store/entitlements/entitlementsSelectors.js";
11
+ import { selectCanCreateAutomation } from "../../../../model/store/permissions/permissionsSelectors.js";
12
+ import { selectExecutionTimestamp } from "../../../../model/store/ui/uiSelectors.js";
13
+ import { selectCurrentUser } from "../../../../model/store/user/userSelectors.js";
14
+ import { DASHBOARD_DIALOG_OVERS_Z_INDEX } from "../../../constants/zIndex.js";
15
15
  import { useScheduleEmailDialogAccessibility } from "../hooks/useScheduleEmailDialogAccessibility.js";
16
16
  import { isMobileView } from "../utils/responsive.js";
17
17
  import { ScheduledEmails } from "./components/ScheduledEmailsList.js";
@@ -6,16 +6,16 @@ import { defineMessage, useIntl } from "react-intl";
6
6
  import { buildDashboardUrl, useBackend, useWorkspace } from "@gooddata/sdk-ui";
7
7
  import { Automations } from "@gooddata/sdk-ui-ext";
8
8
  import { Button, ContentDivider, Dialog, Hyperlink, OverlayController, OverlayControllerProvider, Typography, UiTooltip, useId, } from "@gooddata/sdk-ui-kit";
9
- import { messages } from "../../../locales.js";
10
- import { useDashboardSelector } from "../../../model/react/DashboardStoreProvider.js";
11
- import { DEFAULT_MAX_AUTOMATIONS } from "../../../model/react/useDashboardAutomations/constants.js";
12
- import { selectEnableAccessibilityMode, selectExternalRecipient, selectIsEmbedded, selectIsWhiteLabeled, selectLocale, selectTimezone, } from "../../../model/store/config/configSelectors.js";
13
- import { selectEntitlementMaxAutomations, selectEntitlementUnlimitedAutomations, } from "../../../model/store/entitlements/entitlementsSelectors.js";
14
- import { selectDashboardId, selectDashboardTitle } from "../../../model/store/meta/metaSelectors.js";
15
- import { selectCanCreateAutomation } from "../../../model/store/permissions/permissionsSelectors.js";
16
- import { selectAutomationsInvalidationId, selectExecutionTimestamp, selectIsScheduleEmailDialogOpen, } from "../../../model/store/ui/uiSelectors.js";
17
- import { AUTOMATIONS_COLUMN_CONFIG, AUTOMATIONS_MAX_HEIGHT } from "../../constants/automations.js";
18
- import { DASHBOARD_DIALOG_OVERS_Z_INDEX } from "../../constants/zIndex.js";
9
+ import { messages } from "../../../../locales.js";
10
+ import { useDashboardSelector } from "../../../../model/react/DashboardStoreProvider.js";
11
+ import { DEFAULT_MAX_AUTOMATIONS } from "../../../../model/react/useDashboardAutomations/constants.js";
12
+ import { selectEnableAccessibilityMode, selectExternalRecipient, selectIsEmbedded, selectIsWhiteLabeled, selectLocale, selectTimezone, } from "../../../../model/store/config/configSelectors.js";
13
+ import { selectEntitlementMaxAutomations, selectEntitlementUnlimitedAutomations, } from "../../../../model/store/entitlements/entitlementsSelectors.js";
14
+ import { selectDashboardId, selectDashboardTitle } from "../../../../model/store/meta/metaSelectors.js";
15
+ import { selectCanCreateAutomation } from "../../../../model/store/permissions/permissionsSelectors.js";
16
+ import { selectAutomationsInvalidationId, selectExecutionTimestamp, selectIsScheduleEmailDialogOpen, } from "../../../../model/store/ui/uiSelectors.js";
17
+ import { AUTOMATIONS_COLUMN_CONFIG, AUTOMATIONS_MAX_HEIGHT } from "../../../constants/automations.js";
18
+ import { DASHBOARD_DIALOG_OVERS_Z_INDEX } from "../../../constants/zIndex.js";
19
19
  import { SCHEDULED_EMAIL_DIALOG_ID } from "../DefaultScheduledEmailDialog/constants.js";
20
20
  import { useScheduleEmailDialogAccessibility } from "../hooks/useScheduleEmailDialogAccessibility.js";
21
21
  import { isMobileView } from "../utils/responsive.js";
@@ -2,9 +2,9 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { FormattedMessage, useIntl } from "react-intl";
3
3
  import { convertError, useBackendStrict, useWorkspaceStrict } from "@gooddata/sdk-ui";
4
4
  import { ConfirmDialog } from "@gooddata/sdk-ui-kit";
5
- import { useDashboardSelector } from "../../../../model/react/DashboardStoreProvider.js";
6
- import { selectCanManageWorkspace } from "../../../../model/store/permissions/permissionsSelectors.js";
7
- import { selectCurrentUser } from "../../../../model/store/user/userSelectors.js";
5
+ import { useDashboardSelector } from "../../../../../model/react/DashboardStoreProvider.js";
6
+ import { selectCanManageWorkspace } from "../../../../../model/store/permissions/permissionsSelectors.js";
7
+ import { selectCurrentUser } from "../../../../../model/store/user/userSelectors.js";
8
8
  export function DeleteScheduleConfirmDialog({ scheduledEmail, returnFocusTo, onCancel, onSuccess, onError, }) {
9
9
  const effectiveBackend = useBackendStrict();
10
10
  const effectiveWorkspace = useWorkspaceStrict();
@@ -5,11 +5,11 @@ import cx from "classnames";
5
5
  import { FormattedMessage, useIntl } from "react-intl";
6
6
  import { Bubble, BubbleHoverTrigger, IconInsight, IconSimplifiedDashboard, IconWarning, SELECT_ITEM_ACTION, ShortenedText, } from "@gooddata/sdk-ui-kit";
7
7
  import { useTheme } from "@gooddata/sdk-ui-theme-provider";
8
- import { isVisualisationAutomation } from "../../../../_staging/automation/index.js";
9
- import { useDashboardSelector } from "../../../../model/react/DashboardStoreProvider.js";
10
- import { selectCanManageWorkspace } from "../../../../model/store/permissions/permissionsSelectors.js";
11
- import { selectCurrentUser } from "../../../../model/store/user/userSelectors.js";
12
- import { gdColorNegative, gdColorStateBlank } from "../../../constants/colors.js";
8
+ import { isVisualisationAutomation } from "../../../../../_staging/automation/index.js";
9
+ import { useDashboardSelector } from "../../../../../model/react/DashboardStoreProvider.js";
10
+ import { selectCanManageWorkspace } from "../../../../../model/store/permissions/permissionsSelectors.js";
11
+ import { selectCurrentUser } from "../../../../../model/store/user/userSelectors.js";
12
+ import { gdColorNegative, gdColorStateBlank } from "../../../../constants/colors.js";
13
13
  import { useScheduleValidation } from "../../DefaultScheduledEmailDialog/hooks/useScheduleValidation.js";
14
14
  const ICON_TOOLTIP_ALIGN_POINTS = [
15
15
  { align: "cr cl", offset: { x: 0, y: 0 } },
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- // (C) 2022-2025 GoodData Corporation
2
+ // (C) 2022-2026 GoodData Corporation
3
3
  import { useCallback } from "react";
4
4
  import { FormattedMessage } from "react-intl";
5
5
  import { LoadingSpinner, SELECT_ITEM_ACTION, UiAutofocus, useListWithActionsKeyboardNavigation, } from "@gooddata/sdk-ui-kit";
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- import { useDashboardComponentsContext } from "../dashboardContexts/DashboardComponentsContext.js";
2
+ import { useDashboardComponentsContext } from "../../dashboardContexts/DashboardComponentsContext.js";
3
3
  /**
4
4
  * @internal
5
5
  */
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- import { useDashboardComponentsContext } from "../dashboardContexts/DashboardComponentsContext.js";
2
+ import { useDashboardComponentsContext } from "../../dashboardContexts/DashboardComponentsContext.js";
3
3
  /**
4
4
  * @internal
5
5
  */
@@ -1,8 +1,8 @@
1
1
  // (C) 2025-2026 GoodData Corporation
2
2
  import { useMemo } from "react";
3
- import { DEFAULT_MENU_BUTTON_ID } from "../../../_staging/accessibility/elementId.js";
4
- import { useDashboardSelector } from "../../../model/react/DashboardStoreProvider.js";
5
- import { selectScheduleEmailDialogReturnFocusTo } from "../../../model/store/ui/uiSelectors.js";
3
+ import { DEFAULT_MENU_BUTTON_ID } from "../../../../_staging/accessibility/elementId.js";
4
+ import { useDashboardSelector } from "../../../../model/react/DashboardStoreProvider.js";
5
+ import { selectScheduleEmailDialogReturnFocusTo } from "../../../../model/store/ui/uiSelectors.js";
6
6
  export const useScheduleEmailDialogAccessibility = () => {
7
7
  const emailDialogReturnFocusTo = useDashboardSelector(selectScheduleEmailDialogReturnFocusTo);
8
8
  const returnFocusTo = useMemo(() => emailDialogReturnFocusTo || DEFAULT_MENU_BUTTON_ID, [emailDialogReturnFocusTo]);
@@ -1,3 +1,3 @@
1
1
  import { type IFilter, type IInsightDefinition } from "@gooddata/sdk-model";
2
- import { type FilterableDashboardWidget } from "../../../model/types/layoutTypes.js";
3
- export declare function useWidgetAutomationFilters(widget?: FilterableDashboardWidget, insight?: IInsightDefinition): import("../../../index.js").QueryProcessingState<IFilter[]>;
2
+ import { type FilterableDashboardWidget } from "../../../../model/types/layoutTypes.js";
3
+ export declare function useWidgetAutomationFilters(widget?: FilterableDashboardWidget, insight?: IInsightDefinition): import("../../../../index.js").QueryProcessingState<IFilter[]>;
@@ -1,9 +1,9 @@
1
1
  // (C) 2026 GoodData Corporation
2
2
  import { useMemo } from "react";
3
3
  import { filterIsEmpty, filterLocalIdentifier, isAttributeFilter, isNoopAllTimeDateFilter, } from "@gooddata/sdk-model";
4
- import { useDashboardSelector } from "../../../model/react/DashboardStoreProvider.js";
5
- import { useWidgetFilters } from "../../../model/react/useWidgetFilters.js";
6
- import { selectCrossFilteringItems } from "../../../model/store/drill/drillSelectors.js";
4
+ import { useDashboardSelector } from "../../../../model/react/DashboardStoreProvider.js";
5
+ import { useWidgetFilters } from "../../../../model/react/useWidgetFilters.js";
6
+ import { selectCrossFilteringItems } from "../../../../model/store/drill/drillSelectors.js";
7
7
  export function useWidgetAutomationFilters(widget, insight) {
8
8
  const widgetFiltersQuery = useWidgetFilters(widget, insight);
9
9
  const crossFilteringItems = useDashboardSelector(selectCrossFilteringItems);
@@ -1,7 +1,7 @@
1
1
  import { type ComponentType } from "react";
2
2
  import { type FilterContextItem, type IAutomationMetadataObject, type IAutomationMetadataObjectDefinition, type IFilter, type IInsight, type INotificationChannelIdentifier, type INotificationChannelMetadataObject, type IWorkspaceUser } from "@gooddata/sdk-model";
3
3
  import { type GoodDataSdkError } from "@gooddata/sdk-ui";
4
- import { type ExtendedDashboardWidget } from "../../model/types/layoutTypes.js";
4
+ import { type ExtendedDashboardWidget } from "../../../model/types/layoutTypes.js";
5
5
  /**
6
6
  * @alpha
7
7
  */
@@ -1,4 +1,4 @@
1
- // (C) 2022-2025 GoodData Corporation
1
+ // (C) 2022-2026 GoodData Corporation
2
2
  export function getDefaultCronExpression(date) {
3
3
  return `0 0 ${date.getHours()} ? * *`;
4
4
  }
@@ -1,4 +1,4 @@
1
- // (C) 2022-2025 GoodData Corporation
1
+ // (C) 2022-2026 GoodData Corporation
2
2
  import { parseISO } from "date-fns";
3
3
  import { normalizeTime } from "@gooddata/sdk-ui-kit";
4
4
  import { getDefaultCronExpression } from "./cron.js";
@@ -1,5 +1,5 @@
1
1
  // (C) 2026 GoodData Corporation
2
- import { getAppliedDashboardFilters as getAppliedDashboardFiltersFromAutomationFilters } from "../../automationFilters/utils.js";
2
+ import { getAppliedDashboardFilters as getAppliedDashboardFiltersFromAutomationFilters } from "../../shared/automationFilters/utils.js";
3
3
  export function getAppliedDashboardFilters(selectedAutomationFilters, dashboardHiddenFilters, storeFilters) {
4
4
  return getAppliedDashboardFiltersFromAutomationFilters(selectedAutomationFilters, dashboardHiddenFilters, storeFilters);
5
5
  }
@@ -1,4 +1,4 @@
1
- // (C) 2019-2025 GoodData Corporation
1
+ // (C) 2019-2026 GoodData Corporation
2
2
  const SCREEN_BREAKPOINT_SM = 640;
3
3
  // https://github.com/gooddata/gdc-goodstrap/blob/master/src/core/MediaQueries.js#L61
4
4
  export const isMobileView = () => window.innerWidth <= SCREEN_BREAKPOINT_SM;
@@ -1,4 +1,4 @@
1
- // (C) 2019-2025 GoodData Corporation
1
+ // (C) 2019-2026 GoodData Corporation
2
2
  const JANUARY_OFFSET = -new Date(2011, 0, 1, 0, 0, 0, 0).getTimezoneOffset();
3
3
  const JUNE_OFFSET = -new Date(2011, 5, 1, 0, 0, 0, 0).getTimezoneOffset();
4
4
  const timezonesRaw = [
@@ -1,4 +1,4 @@
1
- // (C) 2022-2025 GoodData Corporation
1
+ // (C) 2022-2026 GoodData Corporation
2
2
  import { isAutomationUserGroupRecipient, } from "@gooddata/sdk-model";
3
3
  import { isEmail } from "./validate.js";
4
4
  export function matchUser(user, search) {
@@ -4,7 +4,7 @@ import { useCallback } from "react";
4
4
  import { useIntl } from "react-intl";
5
5
  import { AttributeFilterButton, } from "@gooddata/sdk-ui-filters";
6
6
  import { UiChip, UiSkeleton, UiTooltip, isActionKey, useIdPrefixed, } from "@gooddata/sdk-ui-kit";
7
- import { DefaultDashboardAttributeFilter } from "../../filterBar/attributeFilter/DefaultDashboardAttributeFilter.js";
7
+ import { DefaultDashboardAttributeFilter } from "../../../../filterBar/attributeFilter/DefaultDashboardAttributeFilter.js";
8
8
  import { AutomationAttributeFilterProvider, useAutomationAttributeFilterContext, } from "./AutomationAttributeFilterContext.js";
9
9
  export function AutomationAttributeFilter({ filter, onChange, onDelete, isLocked, displayAsLabel, overlayPositionType, readonly, tabId, }) {
10
10
  const intl = useIntl();
@@ -4,10 +4,10 @@ import { useCallback, useMemo } from "react";
4
4
  import { useIntl } from "react-intl";
5
5
  import { areObjRefsEqual } from "@gooddata/sdk-model";
6
6
  import { UiChip, UiTooltip, useIdPrefixed } from "@gooddata/sdk-ui-kit";
7
- import { useDashboardSelector } from "../../../model/react/DashboardStoreProvider.js";
8
- import { selectCatalogDateDatasets } from "../../../model/store/catalog/catalogSelectors.js";
9
- import { selectEffectiveDateFilterAvailableGranularities, selectEffectiveDateFilterAvailableGranularitiesForTab, selectEffectiveDateFilterOptions, selectEffectiveDateFilterOptionsForTab, } from "../../../model/store/tabs/dateFilterConfig/dateFilterConfigSelectors.js";
10
- import { DefaultDashboardDateFilter } from "../../filterBar/dateFilter/DefaultDashboardDateFilter.js";
7
+ import { useDashboardSelector } from "../../../../../model/react/DashboardStoreProvider.js";
8
+ import { selectCatalogDateDatasets } from "../../../../../model/store/catalog/catalogSelectors.js";
9
+ import { selectEffectiveDateFilterAvailableGranularities, selectEffectiveDateFilterAvailableGranularitiesForTab, selectEffectiveDateFilterOptions, selectEffectiveDateFilterOptionsForTab, } from "../../../../../model/store/tabs/dateFilterConfig/dateFilterConfigSelectors.js";
10
+ import { DefaultDashboardDateFilter } from "../../../../filterBar/dateFilter/DefaultDashboardDateFilter.js";
11
11
  import { AutomationDateFilterProvider, useAutomationDateFilterContext, } from "./AutomationDateFilterContext.js";
12
12
  function AutomationDateFilterButton(props) {
13
13
  const { isLocked, isCommonDateFilter, onDelete, filter, deleteAriaLabel, deleteTooltipContent, lockedTooltipContent, } = useAutomationDateFilterContext();
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- // (C) 2025 GoodData Corporation
2
+ // (C) 2025-2026 GoodData Corporation
3
3
  import { createContext, useContext } from "react";
4
4
  const AutomationDateFilterContext = createContext(null);
5
5
  /**