@gooddata/sdk-ui-dashboard 11.52.0-alpha.6 → 11.52.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.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/index.d.ts +5 -4
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +5 -4
- package/esm/kdaDialog/composition/hooks/usePeriodChangeHandler.js +5 -0
- package/esm/model/store/config/configSelectors.d.ts +6 -0
- package/esm/model/store/config/configSelectors.d.ts.map +1 -1
- package/esm/model/store/config/configSelectors.js +8 -0
- package/esm/model/store/keyDriverAnalysis/const.d.ts +6 -6
- package/esm/model/store/keyDriverAnalysis/const.d.ts.map +1 -1
- package/esm/model/store/keyDriverAnalysis/const.js +12 -26
- package/esm/model/store/widgetDrills/widgetDrillSelectors.d.ts.map +1 -1
- package/esm/model/store/widgetDrills/widgetDrillSelectors.js +5 -5
- package/esm/presentation/automations/alerting/DefaultAlertingDialog/DefaultAlertingDialog.d.ts +1 -1
- package/esm/presentation/automations/alerting/DefaultAlertingDialog/DefaultAlertingDialog.d.ts.map +1 -1
- package/esm/presentation/automations/alerting/DefaultAlertingDialog/DefaultAlertingDialog.js +3 -4
- package/esm/presentation/automations/alerting/state/AlertingDialogStateProvider.d.ts +5 -1
- package/esm/presentation/automations/alerting/state/AlertingDialogStateProvider.d.ts.map +1 -1
- package/esm/presentation/automations/alerting/state/AlertingDialogStateProvider.js +5 -1
- package/esm/presentation/automations/alerting/types.d.ts +15 -1
- package/esm/presentation/automations/alerting/types.d.ts.map +1 -1
- package/esm/presentation/automations/contexts/AlertingDialogContext.d.ts +26 -0
- package/esm/presentation/automations/contexts/AlertingDialogContext.d.ts.map +1 -1
- package/esm/presentation/automations/contexts/AlertingDialogContext.js +26 -0
- package/esm/presentation/automations/contexts/ScheduledEmailDialogContext.d.ts +10 -1
- package/esm/presentation/automations/contexts/ScheduledEmailDialogContext.d.ts.map +1 -1
- package/esm/presentation/automations/contexts/ScheduledEmailDialogContext.js +9 -0
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/DefaultScheduledEmailDialog.d.ts +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/DefaultScheduledEmailDialog.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/DefaultScheduledEmailDialog.js +19 -17
- package/esm/presentation/automations/scheduledEmail/ScheduledEmailDialog.d.ts +3 -0
- package/esm/presentation/automations/scheduledEmail/ScheduledEmailDialog.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/ScheduledEmailDialog.js +5 -1
- package/esm/presentation/automations/scheduledEmail/state/ScheduledEmailDialogStateProvider.d.ts +22 -0
- package/esm/presentation/automations/scheduledEmail/state/ScheduledEmailDialogStateProvider.d.ts.map +1 -0
- package/esm/presentation/automations/scheduledEmail/state/ScheduledEmailDialogStateProvider.js +150 -0
- package/esm/presentation/automations/scheduledEmail/state/ScheduledExportActionsContext.d.ts +28 -0
- package/esm/presentation/automations/scheduledEmail/state/ScheduledExportActionsContext.d.ts.map +1 -0
- package/esm/presentation/automations/scheduledEmail/state/ScheduledExportActionsContext.js +20 -0
- package/esm/presentation/automations/scheduledEmail/state/ScheduledExportDataContext.d.ts +25 -0
- package/esm/presentation/automations/scheduledEmail/state/ScheduledExportDataContext.d.ts.map +1 -0
- package/esm/presentation/automations/scheduledEmail/state/ScheduledExportDataContext.js +20 -0
- package/esm/presentation/automations/scheduledEmail/state/ScheduledExportDraftContext.d.ts +25 -0
- package/esm/presentation/automations/scheduledEmail/state/ScheduledExportDraftContext.d.ts.map +1 -0
- package/esm/presentation/automations/scheduledEmail/state/ScheduledExportDraftContext.js +20 -0
- package/esm/presentation/automations/scheduledEmail/state/ScheduledExportFiltersContext.d.ts +26 -0
- package/esm/presentation/automations/scheduledEmail/state/ScheduledExportFiltersContext.d.ts.map +1 -0
- package/esm/presentation/automations/scheduledEmail/state/ScheduledExportFiltersContext.js +20 -0
- package/esm/presentation/automations/scheduledEmail/state/exportDefinitions.d.ts.map +1 -0
- package/esm/presentation/automations/scheduledEmail/{DefaultScheduledEmailDialog/utils → state}/exportDefinitions.js +1 -1
- package/esm/presentation/automations/scheduledEmail/state/missingScheduledExportStateProvider.d.ts +7 -0
- package/esm/presentation/automations/scheduledEmail/state/missingScheduledExportStateProvider.d.ts.map +1 -0
- package/esm/presentation/automations/scheduledEmail/state/missingScheduledExportStateProvider.js +9 -0
- package/esm/presentation/automations/scheduledEmail/{DefaultScheduledEmailDialog/hooks → state}/useScheduledEmailEffectiveFilters.d.ts +2 -2
- package/esm/presentation/automations/scheduledEmail/state/useScheduledEmailEffectiveFilters.d.ts.map +1 -0
- package/esm/presentation/automations/scheduledEmail/{DefaultScheduledEmailDialog/hooks → state}/useScheduledEmailEffectiveFilters.js +4 -4
- package/esm/presentation/automations/scheduledEmail/{DefaultScheduledEmailDialog/hooks → state}/useScheduledEmailExportSettings.d.ts +12 -25
- package/esm/presentation/automations/scheduledEmail/state/useScheduledEmailExportSettings.d.ts.map +1 -0
- package/esm/presentation/automations/scheduledEmail/{DefaultScheduledEmailDialog/hooks → state}/useScheduledEmailExportSettings.js +38 -86
- package/esm/presentation/automations/scheduledEmail/{DefaultScheduledEmailDialog/hooks/useScheduledEmailFilters.d.ts → state/useScheduledEmailFiltersModel.d.ts} +7 -7
- package/esm/presentation/automations/scheduledEmail/state/useScheduledEmailFiltersModel.d.ts.map +1 -0
- package/esm/presentation/automations/scheduledEmail/{DefaultScheduledEmailDialog/hooks/useScheduledEmailFilters.js → state/useScheduledEmailFiltersModel.js} +26 -9
- package/esm/presentation/automations/scheduledEmail/state/useScheduledEmailFormState.d.ts.map +1 -0
- package/esm/presentation/automations/scheduledEmail/{DefaultScheduledEmailDialog/hooks → state}/useScheduledEmailFormState.js +25 -25
- package/esm/presentation/automations/scheduledEmail/state/useScheduledEmailFormValidity.d.ts.map +1 -0
- package/esm/presentation/automations/scheduledEmail/{DefaultScheduledEmailDialog/hooks → state}/useScheduledEmailFormValidity.js +3 -3
- package/esm/presentation/automations/scheduledEmail/state/useScheduledExportAttachments.d.ts +39 -0
- package/esm/presentation/automations/scheduledEmail/state/useScheduledExportAttachments.d.ts.map +1 -0
- package/esm/presentation/automations/scheduledEmail/state/useScheduledExportAttachments.js +102 -0
- package/esm/presentation/automations/scheduledEmail/state/useScheduledExportDialogValidity.d.ts +13 -0
- package/esm/presentation/automations/scheduledEmail/state/useScheduledExportDialogValidity.d.ts.map +1 -0
- package/esm/presentation/automations/scheduledEmail/state/useScheduledExportDialogValidity.js +34 -0
- package/esm/presentation/automations/scheduledEmail/types.d.ts +15 -1
- package/esm/presentation/automations/scheduledEmail/types.d.ts.map +1 -1
- package/esm/presentation/drill/DrillSelect/DrillSelectDropdown.d.ts +2 -1
- package/esm/presentation/drill/DrillSelect/DrillSelectDropdown.d.ts.map +1 -1
- package/esm/presentation/drill/DrillSelect/DrillSelectDropdown.js +6 -2
- package/esm/presentation/drill/utils/kdaUtils.d.ts +1 -1
- package/esm/presentation/drill/utils/kdaUtils.d.ts.map +1 -1
- package/esm/presentation/drill/utils/kdaUtils.js +6 -5
- package/esm/presentation/filterBar/dateFilter/DefaultDashboardDateFilter.d.ts +1 -1
- package/esm/presentation/filterBar/dateFilter/DefaultDashboardDateFilter.d.ts.map +1 -1
- package/esm/presentation/filterBar/dateFilter/DefaultDashboardDateFilter.js +2 -2
- package/esm/presentation/filterBar/dateFilter/types.d.ts +8 -1
- package/esm/presentation/filterBar/dateFilter/types.d.ts.map +1 -1
- package/esm/presentation/filterBar/dateFilter/types.js +1 -1
- package/esm/presentation/localization/bundles/de-DE.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/de-DE.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/de-DE.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/en-AU.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/en-AU.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/en-AU.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/en-GB.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/en-GB.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/en-GB.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/es-419.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/es-419.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/es-419.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/es-ES.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/es-ES.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/es-ES.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/fi-FI.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/fi-FI.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/fi-FI.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/fr-CA.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/fr-CA.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/fr-CA.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/fr-FR.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/fr-FR.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/fr-FR.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/id-ID.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/id-ID.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/id-ID.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/it-IT.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/it-IT.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/it-IT.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/ja-JP.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/ja-JP.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/ja-JP.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/ko-KR.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/ko-KR.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/ko-KR.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/nl-NL.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/nl-NL.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/nl-NL.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/pl-PL.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/pl-PL.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/pl-PL.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/pt-BR.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/pt-BR.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/pt-BR.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/pt-PT.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/pt-PT.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/pt-PT.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/ru-RU.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/ru-RU.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/ru-RU.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/sl-SI.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/sl-SI.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/sl-SI.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/th-TH.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/th-TH.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/th-TH.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/tr-TR.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/tr-TR.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/tr-TR.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/uk-UA.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/uk-UA.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/uk-UA.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/vi-VN.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/vi-VN.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/vi-VN.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/zh-HK.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/zh-HK.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/zh-HK.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/zh-Hans.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/zh-Hans.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/zh-Hans.localization-bundle.js +9 -7
- package/esm/presentation/localization/bundles/zh-Hant.localization-bundle.d.ts +2 -0
- package/esm/presentation/localization/bundles/zh-Hant.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/zh-Hant.localization-bundle.js +9 -7
- package/esm/sdk-ui-dashboard.d.ts +126 -18
- package/package.json +21 -21
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.d.ts +0 -89
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.d.ts.map +0 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.js +0 -131
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailEffectiveFilters.d.ts.map +0 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailExportSettings.d.ts.map +0 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailFilters.d.ts.map +0 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailFormState.d.ts.map +0 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailFormValidity.d.ts.map +0 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/utils/exportDefinitions.d.ts.map +0 -1
- /package/esm/presentation/automations/scheduledEmail/{DefaultScheduledEmailDialog/utils → state}/exportDefinitions.d.ts +0 -0
- /package/esm/presentation/automations/scheduledEmail/{DefaultScheduledEmailDialog/hooks → state}/useScheduledEmailFormState.d.ts +0 -0
- /package/esm/presentation/automations/scheduledEmail/{DefaultScheduledEmailDialog/hooks → state}/useScheduledEmailFormValidity.d.ts +0 -0
|
@@ -110,10 +110,12 @@ export const vi_VN = {
|
|
|
110
110
|
"settingsDashboardDialog.section.alert.note": "<strong>Lưu ý:</strong> Chỉ áp dụng cho các cảnh báo mới — sử dụng API để cập nhật các cảnh báo hiện có.",
|
|
111
111
|
"settingsDashboardDialog.section.alert.label": "Tần suất đánh giá",
|
|
112
112
|
"settingsDashboardDialog.section.timezone": "Múi giờ",
|
|
113
|
-
"settingsDashboardDialog.section.timezone.defaultTimezone": "Múi giờ
|
|
114
|
-
"settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "Múi giờ
|
|
115
|
-
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Mặc định
|
|
116
|
-
"settingsDashboardDialog.section.timezone.defaultTimezone.
|
|
113
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone": "Múi giờ của bảng điều khiển",
|
|
114
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "Múi giờ dùng cho bộ lọc ngày và giá trị ngày trên bảng điều khiển này.",
|
|
115
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Mặc định",
|
|
116
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace.tooltip": "Tuân theo múi giờ được đặt cho tổ chức, không gian làm việc hoặc tài khoản người dùng của bạn. Múi giờ này tự động cập nhật nếu cài đặt đó thay đổi.",
|
|
117
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Múi giờ thiết bị",
|
|
118
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser.tooltip": "Sử dụng múi giờ do trình duyệt của người xem báo cáo. Có thể khác nhau đối với từng người xem.",
|
|
117
119
|
"settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "Cho phép người dùng thay đổi múi giờ của bảng điều khiển",
|
|
118
120
|
"settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "Khi được bật, người xem có thể tạm thời thay đổi múi giờ của bảng điều khiển. Thay đổi này không được lưu.",
|
|
119
121
|
"settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "Hiển thị múi giờ",
|
|
@@ -121,10 +123,10 @@ export const vi_VN = {
|
|
|
121
123
|
"settingsDashboardDialog.section.timezone.select.searchPlaceholder": "Tìm kiếm ...",
|
|
122
124
|
"settingsDashboardDialog.section.timezone.select.noMatch": "Không có múi giờ khớp.",
|
|
123
125
|
"timezoneDialog.title": "Thay đổi múi giờ",
|
|
124
|
-
"timezoneDialog.description": "<b>Lưu ý:</b> Múi giờ sẽ đặt lại về mặc định
|
|
126
|
+
"timezoneDialog.description": "<b>Lưu ý:</b> Múi giờ sẽ được đặt lại về mặc định khi bạn tải lại trang.",
|
|
125
127
|
"timezoneDialog.description.ariaLabel": "Thông báo thông tin của hộp thoại thay đổi múi giờ",
|
|
126
|
-
"timezoneDialog.default": "Mặc định
|
|
127
|
-
"timezoneDialog.fromBrowser": "
|
|
128
|
+
"timezoneDialog.default": "Mặc định",
|
|
129
|
+
"timezoneDialog.fromBrowser": "Múi giờ thiết bị ({timezone})",
|
|
128
130
|
"timezoneDialog.select.searchPlaceholder": "Tìm kiếm ...",
|
|
129
131
|
"timezoneDialog.select.noMatch": "Không có múi giờ khớp.",
|
|
130
132
|
"timezoneDialog.currentTime": "Hiện tại {time}",
|
|
@@ -111,7 +111,9 @@ export declare const zh_HK: {
|
|
|
111
111
|
"settingsDashboardDialog.section.timezone.defaultTimezone": string;
|
|
112
112
|
"settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": string;
|
|
113
113
|
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace": string;
|
|
114
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace.tooltip": string;
|
|
114
115
|
"settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": string;
|
|
116
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser.tooltip": string;
|
|
115
117
|
"settingsDashboardDialog.section.timezone.allowUserOverride.toggle": string;
|
|
116
118
|
"settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": string;
|
|
117
119
|
"settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zh-HK.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/zh-HK.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"zh-HK.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/zh-HK.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAg4BjB,CAAC"}
|
|
@@ -110,10 +110,12 @@ export const zh_HK = {
|
|
|
110
110
|
"settingsDashboardDialog.section.alert.note": "<strong>注意:</strong>僅適用於新通知-使用API更新現有通知。",
|
|
111
111
|
"settingsDashboardDialog.section.alert.label": "評估頻率",
|
|
112
112
|
"settingsDashboardDialog.section.timezone": "時區",
|
|
113
|
-
"settingsDashboardDialog.section.timezone.defaultTimezone": "
|
|
114
|
-
"settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "
|
|
115
|
-
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "
|
|
116
|
-
"settingsDashboardDialog.section.timezone.defaultTimezone.
|
|
113
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone": "儀表板時區",
|
|
114
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "此儀表板上的日期篩選器及日期值所用的時區。",
|
|
115
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "預設",
|
|
116
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace.tooltip": "遵循為您的組織、工作區或使用者帳戶設定的時區。如該設定變更,時區會自動更新。",
|
|
117
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "裝置時區",
|
|
118
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser.tooltip": "使用檢視者的瀏覽器所回報的時區。每位檢視者的時區可能不同。",
|
|
117
119
|
"settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "允許使用者變更儀表板時區",
|
|
118
120
|
"settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "啟用後,檢視者可以暫時變更儀表板時區。此變更不會儲存。",
|
|
119
121
|
"settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "顯示時區",
|
|
@@ -121,10 +123,10 @@ export const zh_HK = {
|
|
|
121
123
|
"settingsDashboardDialog.section.timezone.select.searchPlaceholder": "搜尋...",
|
|
122
124
|
"settingsDashboardDialog.section.timezone.select.noMatch": "沒有相符的時區。",
|
|
123
125
|
"timezoneDialog.title": "變更時區",
|
|
124
|
-
"timezoneDialog.description": "<b>注意:</b
|
|
126
|
+
"timezoneDialog.description": "<b>注意:</b>重新載入頁面後,時區會重設為預設值。",
|
|
125
127
|
"timezoneDialog.description.ariaLabel": "變更時區對話方塊資訊訊息",
|
|
126
|
-
"timezoneDialog.default": "
|
|
127
|
-
"timezoneDialog.fromBrowser": "
|
|
128
|
+
"timezoneDialog.default": "預設",
|
|
129
|
+
"timezoneDialog.fromBrowser": "裝置時區 ({timezone})",
|
|
128
130
|
"timezoneDialog.select.searchPlaceholder": "搜尋...",
|
|
129
131
|
"timezoneDialog.select.noMatch": "沒有相符的時區。",
|
|
130
132
|
"timezoneDialog.currentTime": "現在 {time}",
|
|
@@ -111,7 +111,9 @@ export declare const zh_Hans: {
|
|
|
111
111
|
"settingsDashboardDialog.section.timezone.defaultTimezone": string;
|
|
112
112
|
"settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": string;
|
|
113
113
|
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace": string;
|
|
114
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace.tooltip": string;
|
|
114
115
|
"settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": string;
|
|
116
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser.tooltip": string;
|
|
115
117
|
"settingsDashboardDialog.section.timezone.allowUserOverride.toggle": string;
|
|
116
118
|
"settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": string;
|
|
117
119
|
"settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zh-Hans.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/zh-Hans.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"zh-Hans.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/zh-Hans.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAg4BnB,CAAC"}
|
|
@@ -110,10 +110,12 @@ export const zh_Hans = {
|
|
|
110
110
|
"settingsDashboardDialog.section.alert.note": "<strong>笔记:</strong> 仅适用于新警报 - 使用 API 更新现有警报。",
|
|
111
111
|
"settingsDashboardDialog.section.alert.label": "评估频率",
|
|
112
112
|
"settingsDashboardDialog.section.timezone": "时区",
|
|
113
|
-
"settingsDashboardDialog.section.timezone.defaultTimezone": "
|
|
114
|
-
"settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "
|
|
115
|
-
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "
|
|
116
|
-
"settingsDashboardDialog.section.timezone.defaultTimezone.
|
|
113
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone": "仪表板时区",
|
|
114
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "用于此仪表板上的日期筛选器和日期值的时区。",
|
|
115
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "默认",
|
|
116
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace.tooltip": "遵循为您的组织、工作区或用户帐户设置的时区。如果该设置发生变化,时区会自动更新。",
|
|
117
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "设备时区",
|
|
118
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser.tooltip": "使用查看者浏览器报告的时区。每位查看者的时区可能不同。",
|
|
117
119
|
"settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "允许用户更改仪表板时区",
|
|
118
120
|
"settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "启用后,查看者可以临时更改仪表板时区。更改不会保存。",
|
|
119
121
|
"settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "显示时区",
|
|
@@ -121,10 +123,10 @@ export const zh_Hans = {
|
|
|
121
123
|
"settingsDashboardDialog.section.timezone.select.searchPlaceholder": "搜索...",
|
|
122
124
|
"settingsDashboardDialog.section.timezone.select.noMatch": "无匹配时区。",
|
|
123
125
|
"timezoneDialog.title": "更改时区",
|
|
124
|
-
"timezoneDialog.description": "<b>注意:</b
|
|
126
|
+
"timezoneDialog.description": "<b>注意:</b>重新加载页面时,时区将重置为默认值。",
|
|
125
127
|
"timezoneDialog.description.ariaLabel": "更改时区对话框信息消息",
|
|
126
|
-
"timezoneDialog.default": "
|
|
127
|
-
"timezoneDialog.fromBrowser": "
|
|
128
|
+
"timezoneDialog.default": "默认",
|
|
129
|
+
"timezoneDialog.fromBrowser": "设备时区 ({timezone})",
|
|
128
130
|
"timezoneDialog.select.searchPlaceholder": "搜索...",
|
|
129
131
|
"timezoneDialog.select.noMatch": "无匹配时区。",
|
|
130
132
|
"timezoneDialog.currentTime": "当前时间 {time}",
|
|
@@ -111,7 +111,9 @@ export declare const zh_Hant: {
|
|
|
111
111
|
"settingsDashboardDialog.section.timezone.defaultTimezone": string;
|
|
112
112
|
"settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": string;
|
|
113
113
|
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace": string;
|
|
114
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace.tooltip": string;
|
|
114
115
|
"settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": string;
|
|
116
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser.tooltip": string;
|
|
115
117
|
"settingsDashboardDialog.section.timezone.allowUserOverride.toggle": string;
|
|
116
118
|
"settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": string;
|
|
117
119
|
"settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zh-Hant.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/zh-Hant.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"zh-Hant.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/zh-Hant.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAg4BnB,CAAC"}
|
|
@@ -110,10 +110,12 @@ export const zh_Hant = {
|
|
|
110
110
|
"settingsDashboardDialog.section.alert.note": "<strong>筆記:</strong> 僅適用於新警報 - 使用 API 更新現有警報。",
|
|
111
111
|
"settingsDashboardDialog.section.alert.label": "評估頻率",
|
|
112
112
|
"settingsDashboardDialog.section.timezone": "時區",
|
|
113
|
-
"settingsDashboardDialog.section.timezone.defaultTimezone": "
|
|
114
|
-
"settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "
|
|
115
|
-
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "
|
|
116
|
-
"settingsDashboardDialog.section.timezone.defaultTimezone.
|
|
113
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone": "儀表板時區",
|
|
114
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "用於此儀表板上的日期篩選器和日期值的時區。",
|
|
115
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "預設",
|
|
116
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.workspace.tooltip": "遵循為您的組織、工作區或使用者帳戶設定的時區。如果該設定變更,將自動更新。",
|
|
117
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "裝置時區",
|
|
118
|
+
"settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser.tooltip": "使用檢視者瀏覽器回報的時區。每位檢視者可能不同。",
|
|
117
119
|
"settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "允許使用者變更儀表板時區",
|
|
118
120
|
"settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "啟用時,檢視者可以暫時變更儀表板時區。此變更不會儲存。",
|
|
119
121
|
"settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "顯示時區",
|
|
@@ -121,10 +123,10 @@ export const zh_Hant = {
|
|
|
121
123
|
"settingsDashboardDialog.section.timezone.select.searchPlaceholder": "搜尋 ...",
|
|
122
124
|
"settingsDashboardDialog.section.timezone.select.noMatch": "沒有相符的時區。",
|
|
123
125
|
"timezoneDialog.title": "變更時區",
|
|
124
|
-
"timezoneDialog.description": "<b>注意:</b
|
|
126
|
+
"timezoneDialog.description": "<b>注意:</b>重新載入頁面時,時區會重設為預設值。",
|
|
125
127
|
"timezoneDialog.description.ariaLabel": "變更時區對話方塊資訊訊息",
|
|
126
|
-
"timezoneDialog.default": "
|
|
127
|
-
"timezoneDialog.fromBrowser": "
|
|
128
|
+
"timezoneDialog.default": "預設",
|
|
129
|
+
"timezoneDialog.fromBrowser": "裝置時區 ({timezone})",
|
|
128
130
|
"timezoneDialog.select.searchPlaceholder": "搜尋 ...",
|
|
129
131
|
"timezoneDialog.select.noMatch": "沒有相符的時區。",
|
|
130
132
|
"timezoneDialog.currentTime": "目前時間 {time}",
|
|
@@ -213,6 +213,7 @@ import { ParameterValue } from '@gooddata/sdk-model';
|
|
|
213
213
|
import { Patch } from 'immer';
|
|
214
214
|
import { PayloadAction } from '@reduxjs/toolkit';
|
|
215
215
|
import { PlatformEdition } from '@gooddata/sdk-model';
|
|
216
|
+
import { Provider } from 'react';
|
|
216
217
|
import { ReactElement } from 'react';
|
|
217
218
|
import { ReactNode } from 'react';
|
|
218
219
|
import { ReactReduxContextValue } from 'react-redux';
|
|
@@ -513,6 +514,58 @@ export declare function addVisualizationToSwitcherWidgetContent(ref: ObjRef, vis
|
|
|
513
514
|
*/
|
|
514
515
|
export declare function AlertingDialog(props: IAlertingDialogProps): ReactElement;
|
|
515
516
|
|
|
517
|
+
/**
|
|
518
|
+
* Provider for {@link IAlertingDialogContextValue}.
|
|
519
|
+
*
|
|
520
|
+
* Besides the connector's own use, a custom `AlertingDialogComponent` can decorate the context for the
|
|
521
|
+
* default dialog: read the value via {@link useAlertingDialogContext}, adjust it (e.g. swap the
|
|
522
|
+
* `insight`), and re-provide it around `DefaultAlertingDialog`.
|
|
523
|
+
*
|
|
524
|
+
* The default dialog renders from the alert state contexts, which are initialized from this context
|
|
525
|
+
* **above** the resolved dialog component. A decorator that changes data members must therefore also
|
|
526
|
+
* remount `AlertingDialogStateProvider` beneath the re-provided context, so the state is derived from
|
|
527
|
+
* the decorated value (the nested state shadows the ambient one):
|
|
528
|
+
*
|
|
529
|
+
* ```tsx
|
|
530
|
+
* const ctx = useAlertingDialogContext();
|
|
531
|
+
* const value = useMemo(() => ({ ...ctx, insight: decoratedInsight }), [ctx, decoratedInsight]);
|
|
532
|
+
* return (
|
|
533
|
+
* <AlertingDialogContextProvider value={value}>
|
|
534
|
+
* <AlertingDialogStateProvider>
|
|
535
|
+
* <DefaultAlertingDialog {...props} />
|
|
536
|
+
* </AlertingDialogStateProvider>
|
|
537
|
+
* </AlertingDialogContextProvider>
|
|
538
|
+
* );
|
|
539
|
+
* ```
|
|
540
|
+
*
|
|
541
|
+
* @alpha
|
|
542
|
+
*/
|
|
543
|
+
export declare const AlertingDialogContextProvider: Provider<IAlertingDialogContextValue | undefined>;
|
|
544
|
+
|
|
545
|
+
/**
|
|
546
|
+
* Publishes the alerting create/edit dialog's state as the four alert state contexts once the
|
|
547
|
+
* dialog's data has loaded.
|
|
548
|
+
*
|
|
549
|
+
* Mounts above the resolved `AlertingDialogComponent`, so the default dialog, a shell of blocks
|
|
550
|
+
* and a wholesale replacement all read the same state with no extra wiring. Defers mounting the
|
|
551
|
+
* state model itself until `useAlertingDialogContext().isLoading` is false, because the state
|
|
552
|
+
* model seeds its draft from the dialog's loaded data in `useState` initializers that never
|
|
553
|
+
* re-run — mounting earlier would freeze that seed against not-yet-loaded data.
|
|
554
|
+
*
|
|
555
|
+
* Runs `useIntl`-calling hooks, so an `IntlProvider` must sit above it. Inside a `Dashboard` the
|
|
556
|
+
* ambient wrapper in `DashboardInner` supplies one with the same locale; a mount site without one
|
|
557
|
+
* throws in react-intl.
|
|
558
|
+
*
|
|
559
|
+
* A custom `AlertingDialogComponent` that decorates the dialog context (re-provides
|
|
560
|
+
* `AlertingDialogContextProvider` with an adjusted value) must remount this provider beneath the
|
|
561
|
+
* decorated context, so the state is derived from the decorated value rather than the ambient one.
|
|
562
|
+
*
|
|
563
|
+
* @alpha
|
|
564
|
+
*/
|
|
565
|
+
export declare function AlertingDialogStateProvider({ children }: {
|
|
566
|
+
children: ReactNode;
|
|
567
|
+
}): JSX.Element;
|
|
568
|
+
|
|
516
569
|
/**
|
|
517
570
|
* @internal
|
|
518
571
|
*/
|
|
@@ -3878,7 +3931,7 @@ export declare function DefaultDashboardAttributeFilterComponentSetFactory(attri
|
|
|
3878
3931
|
*
|
|
3879
3932
|
* @alpha
|
|
3880
3933
|
*/
|
|
3881
|
-
export declare function DefaultDashboardDateFilter({ filter, workingFilter, onFilterChanged, config, readonly, autoOpen, ButtonComponent, overlayPositionType, tabId }: IDashboardDateFilterProps): ReactElement;
|
|
3934
|
+
export declare function DefaultDashboardDateFilter({ filter, workingFilter, onFilterChanged, config, readonly, autoOpen, ButtonComponent, overlayPositionType, tabId, customRangeHint }: IDashboardDateFilterProps): ReactElement;
|
|
3882
3935
|
|
|
3883
3936
|
/**
|
|
3884
3937
|
* @internal
|
|
@@ -5147,7 +5200,21 @@ export declare function getFilterIdentifier(filter: FilterContextItem): string;
|
|
|
5147
5200
|
/**
|
|
5148
5201
|
* @internal
|
|
5149
5202
|
*/
|
|
5150
|
-
export declare function getKdaKeyDriverCombinations(drillDefinition: IKeyDriveAnalysis, drillEvent: IDrillEvent): IDashboardKeyDriverCombinationItem[];
|
|
5203
|
+
export declare function getKdaKeyDriverCombinations(drillDefinition: IKeyDriveAnalysis, drillEvent: IDrillEvent, enableSecondGranularities?: boolean): IDashboardKeyDriverCombinationItem[];
|
|
5204
|
+
|
|
5205
|
+
/**
|
|
5206
|
+
* Returns KDA-supported date granularities, including second when the feature flag is on.
|
|
5207
|
+
*
|
|
5208
|
+
* @internal
|
|
5209
|
+
*/
|
|
5210
|
+
export declare function getKeyDriverAnalysisSupportedGranularities(enableSecondGranularities?: boolean): DateAttributeGranularity[];
|
|
5211
|
+
|
|
5212
|
+
/**
|
|
5213
|
+
* Returns KDA-supported string granularities, including second when the feature flag is on.
|
|
5214
|
+
*
|
|
5215
|
+
* @internal
|
|
5216
|
+
*/
|
|
5217
|
+
export declare function getKeyDriverAnalysisSupportedStringGranularities(enableSecondGranularities?: boolean): string[];
|
|
5151
5218
|
|
|
5152
5219
|
/**
|
|
5153
5220
|
* @internal
|
|
@@ -5733,6 +5800,20 @@ export declare interface IAlertingDialogProps {
|
|
|
5733
5800
|
* @deprecated read `isLoading` from `useAlertingDialogContext()` instead. Prop will be removed.
|
|
5734
5801
|
*/
|
|
5735
5802
|
isLoading?: boolean;
|
|
5803
|
+
/**
|
|
5804
|
+
* Custom content rendered as the first child of the dialog content area, above the default form.
|
|
5805
|
+
*
|
|
5806
|
+
* @remarks
|
|
5807
|
+
* Use this to surface an application-specific banner or warning without replacing the whole dialog.
|
|
5808
|
+
*/
|
|
5809
|
+
topContent?: ReactNode;
|
|
5810
|
+
/**
|
|
5811
|
+
* Custom content rendered as the last child of the dialog content area, below the default form.
|
|
5812
|
+
*
|
|
5813
|
+
* @remarks
|
|
5814
|
+
* Use this to surface an application-specific note or disclaimer without replacing the whole dialog.
|
|
5815
|
+
*/
|
|
5816
|
+
bottomContent?: ReactNode;
|
|
5736
5817
|
/**
|
|
5737
5818
|
* Callback to be called, when user closes the alert dialog.
|
|
5738
5819
|
*/
|
|
@@ -8473,6 +8554,13 @@ export declare interface IDashboardDateFilterProps {
|
|
|
8473
8554
|
* @internal
|
|
8474
8555
|
*/
|
|
8475
8556
|
tabId?: string;
|
|
8557
|
+
/**
|
|
8558
|
+
* Custom content rendered at the end of the hint area of the static period (absolute range) form,
|
|
8559
|
+
* after the default date/time format hints.
|
|
8560
|
+
*
|
|
8561
|
+
* @alpha
|
|
8562
|
+
*/
|
|
8563
|
+
customRangeHint?: ReactNode;
|
|
8476
8564
|
}
|
|
8477
8565
|
|
|
8478
8566
|
/**
|
|
@@ -17005,7 +17093,7 @@ export declare interface IScheduledEmailDialogContextValue {
|
|
|
17005
17093
|
commonDateFilterId?: string;
|
|
17006
17094
|
/**
|
|
17007
17095
|
* Effective export parameter overrides keyed by tab, scoped to the dialog's widget when present.
|
|
17008
|
-
*
|
|
17096
|
+
* Hydrated by the connector, so the dialog tree reads no store selector for them.
|
|
17009
17097
|
*/
|
|
17010
17098
|
exportParametersByTab: Record<string, IDashboardExportParameter[]>;
|
|
17011
17099
|
/**
|
|
@@ -17106,6 +17194,20 @@ export declare interface IScheduledEmailDialogProps {
|
|
|
17106
17194
|
* @deprecated read `isLoading` from `useScheduledEmailDialogContext()` instead. Prop will be removed.
|
|
17107
17195
|
*/
|
|
17108
17196
|
isLoading?: boolean;
|
|
17197
|
+
/**
|
|
17198
|
+
* Custom content rendered as the first child of the dialog content area, above the default form.
|
|
17199
|
+
*
|
|
17200
|
+
* @remarks
|
|
17201
|
+
* Use this to surface an application-specific banner or warning without replacing the whole dialog.
|
|
17202
|
+
*/
|
|
17203
|
+
topContent?: ReactNode;
|
|
17204
|
+
/**
|
|
17205
|
+
* Custom content rendered as the last child of the dialog content area, below the default form.
|
|
17206
|
+
*
|
|
17207
|
+
* @remarks
|
|
17208
|
+
* Use this to surface an application-specific note or disclaimer without replacing the whole dialog.
|
|
17209
|
+
*/
|
|
17210
|
+
bottomContent?: ReactNode;
|
|
17109
17211
|
/**
|
|
17110
17212
|
* Callback to be called, when user submits the scheduled email dialog.
|
|
17111
17213
|
*/
|
|
@@ -20645,21 +20747,6 @@ export declare type KeyboardNavigationConfig = {
|
|
|
20645
20747
|
*/
|
|
20646
20748
|
export declare function keyDriverAnalysis(drillDefinition: IKeyDriveAnalysis, drillEvent: IDashboardDrillEvent, filters: FilterContextItem[], keyDriveItem: IDashboardKeyDriverCombinationItem, correlationId?: string): IKeyDriverAnalysis;
|
|
20647
20749
|
|
|
20648
|
-
/**
|
|
20649
|
-
* @internal
|
|
20650
|
-
*/
|
|
20651
|
-
export declare const keyDriverAnalysisSupportedGranularities: DateAttributeGranularity[];
|
|
20652
|
-
|
|
20653
|
-
/**
|
|
20654
|
-
* @internal
|
|
20655
|
-
*/
|
|
20656
|
-
export declare const keyDriverAnalysisSupportedStringGranularities: string[];
|
|
20657
|
-
|
|
20658
|
-
/**
|
|
20659
|
-
* @internal
|
|
20660
|
-
*/
|
|
20661
|
-
export declare const keyDriverYearGranularity: string[];
|
|
20662
|
-
|
|
20663
20750
|
/**
|
|
20664
20751
|
* @internal
|
|
20665
20752
|
*/
|
|
@@ -22926,10 +23013,24 @@ export declare type SavingState = {
|
|
|
22926
23013
|
};
|
|
22927
23014
|
|
|
22928
23015
|
/**
|
|
23016
|
+
* Resolves the dialog component from DashboardComponentsContext and mounts it under the
|
|
23017
|
+
* scheduled-export dialog's state contexts.
|
|
23018
|
+
*
|
|
22929
23019
|
* @internal
|
|
22930
23020
|
*/
|
|
22931
23021
|
export declare function ScheduledEmailDialog(props: IScheduledEmailDialogProps): ReactElement;
|
|
22932
23022
|
|
|
23023
|
+
/**
|
|
23024
|
+
* Provider for {@link IScheduledEmailDialogContextValue}.
|
|
23025
|
+
*
|
|
23026
|
+
* Besides the connector's own use, a custom `ScheduledEmailDialogComponent` can decorate the context for
|
|
23027
|
+
* the default dialog: read the value via {@link useScheduledEmailDialogContext}, adjust it, and
|
|
23028
|
+
* re-provide it around `DefaultScheduledEmailDialog`.
|
|
23029
|
+
*
|
|
23030
|
+
* @alpha
|
|
23031
|
+
*/
|
|
23032
|
+
export declare const ScheduledEmailDialogContextProvider: Provider<IScheduledEmailDialogContextValue | undefined>;
|
|
23033
|
+
|
|
22933
23034
|
/**
|
|
22934
23035
|
* @internal
|
|
22935
23036
|
*/
|
|
@@ -24501,6 +24602,13 @@ export declare const selectEnableParameters: DashboardSelector<boolean>;
|
|
|
24501
24602
|
*/
|
|
24502
24603
|
export declare const selectEnableRichTextWidgetFilterConfiguration: DashboardSelector<boolean>;
|
|
24503
24604
|
|
|
24605
|
+
/**
|
|
24606
|
+
* Returns whether second-level date granularities are enabled.
|
|
24607
|
+
*
|
|
24608
|
+
* @alpha
|
|
24609
|
+
*/
|
|
24610
|
+
export declare const selectEnableSecondGranularities: DashboardSelector<boolean>;
|
|
24611
|
+
|
|
24504
24612
|
/**
|
|
24505
24613
|
* @internal
|
|
24506
24614
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-dashboard",
|
|
3
|
-
"version": "11.52.0
|
|
3
|
+
"version": "11.52.0",
|
|
4
4
|
"description": "GoodData SDK - Dashboard Component",
|
|
5
5
|
"license": "LicenseRef-LICENSE",
|
|
6
6
|
"author": "GoodData Corporation",
|
|
@@ -60,20 +60,20 @@
|
|
|
60
60
|
"ts-invariant": "0.10.3",
|
|
61
61
|
"tslib": "2.8.1",
|
|
62
62
|
"uuid": "11.1.1",
|
|
63
|
-
"@gooddata/sdk-backend-
|
|
64
|
-
"@gooddata/sdk-
|
|
65
|
-
"@gooddata/sdk-
|
|
66
|
-
"@gooddata/sdk-
|
|
67
|
-
"@gooddata/sdk-ui": "11.52.0
|
|
68
|
-
"@gooddata/sdk-ui-ext": "11.52.0
|
|
69
|
-
"@gooddata/sdk-ui-
|
|
70
|
-
"@gooddata/sdk-ui-
|
|
71
|
-
"@gooddata/sdk-ui-kit": "11.52.0
|
|
72
|
-
"@gooddata/sdk-ui-pivot": "11.52.0
|
|
73
|
-
"@gooddata/sdk-ui-
|
|
74
|
-
"@gooddata/sdk-ui-
|
|
75
|
-
"@gooddata/sdk-ui-vis-commons": "11.52.0
|
|
76
|
-
"@gooddata/util": "11.52.0
|
|
63
|
+
"@gooddata/sdk-backend-spi": "11.52.0",
|
|
64
|
+
"@gooddata/sdk-backend-base": "11.52.0",
|
|
65
|
+
"@gooddata/sdk-ui-charts": "11.52.0",
|
|
66
|
+
"@gooddata/sdk-model": "11.52.0",
|
|
67
|
+
"@gooddata/sdk-ui": "11.52.0",
|
|
68
|
+
"@gooddata/sdk-ui-ext": "11.52.0",
|
|
69
|
+
"@gooddata/sdk-ui-geo": "11.52.0",
|
|
70
|
+
"@gooddata/sdk-ui-filters": "11.52.0",
|
|
71
|
+
"@gooddata/sdk-ui-kit": "11.52.0",
|
|
72
|
+
"@gooddata/sdk-ui-pivot": "11.52.0",
|
|
73
|
+
"@gooddata/sdk-ui-theme-provider": "11.52.0",
|
|
74
|
+
"@gooddata/sdk-ui-semantic-search": "11.52.0",
|
|
75
|
+
"@gooddata/sdk-ui-vis-commons": "11.52.0",
|
|
76
|
+
"@gooddata/util": "11.52.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"@microsoft/api-documenter": "^7.17.0",
|
|
@@ -119,12 +119,12 @@
|
|
|
119
119
|
"typescript": "5.9.3",
|
|
120
120
|
"vitest": "4.1.8",
|
|
121
121
|
"vitest-dom": "0.1.1",
|
|
122
|
-
"@gooddata/
|
|
123
|
-
"@gooddata/
|
|
124
|
-
"@gooddata/oxlint-config": "11.52.0
|
|
125
|
-
"@gooddata/reference-workspace": "11.52.0
|
|
126
|
-
"@gooddata/sdk-backend-mockingbird": "11.52.0
|
|
127
|
-
"@gooddata/stylelint-config": "11.52.0
|
|
122
|
+
"@gooddata/eslint-config": "11.52.0",
|
|
123
|
+
"@gooddata/i18n-toolkit": "11.52.0",
|
|
124
|
+
"@gooddata/oxlint-config": "11.52.0",
|
|
125
|
+
"@gooddata/reference-workspace": "11.52.0",
|
|
126
|
+
"@gooddata/sdk-backend-mockingbird": "11.52.0",
|
|
127
|
+
"@gooddata/stylelint-config": "11.52.0"
|
|
128
128
|
},
|
|
129
129
|
"peerDependencies": {
|
|
130
130
|
"react": "^18.0.0 || ^19.0.0",
|
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
import { type PdfPageSize } from "../../utils/pdfPageSize.js";
|
|
2
|
-
export interface IUseEditScheduledEmailProps {
|
|
3
|
-
maxAutomationsRecipients: number;
|
|
4
|
-
externalRecipientOverride?: string;
|
|
5
|
-
/**
|
|
6
|
-
* Locale-derived default page size for new PDF attachments. Required and non-nullable: it
|
|
7
|
-
* reaches the saved export definition through {@link useScheduledEmailExportSettings}, so a caller
|
|
8
|
-
* that omits it silently saves `A4` where the locale asks for `LETTER`.
|
|
9
|
-
*/
|
|
10
|
-
defaultPdfPageSize: PdfPageSize;
|
|
11
|
-
}
|
|
12
|
-
export declare function useEditScheduledEmail({ maxAutomationsRecipients, externalRecipientOverride, defaultPdfPageSize }: IUseEditScheduledEmailProps): {
|
|
13
|
-
parametersEnabled: boolean;
|
|
14
|
-
visibleParametersByTab: import("../../../shared/automationFilters/useAutomationExportParameters.js").EditedParametersByTab;
|
|
15
|
-
availableParametersByTab: import("../../../shared/automationFilters/useAutomationExportParameters.js").EditedParametersByTab;
|
|
16
|
-
flatTabId: string | undefined;
|
|
17
|
-
onParameterAdd: (ref: import("@gooddata/sdk-model").IdentifierRef) => void;
|
|
18
|
-
onParameterChange: (ref: import("@gooddata/sdk-model").IdentifierRef, value: string | number) => void;
|
|
19
|
-
onParameterDelete: (ref: import("@gooddata/sdk-model").IdentifierRef) => void;
|
|
20
|
-
onParameterAddByTab: (tabId: string, ref: import("@gooddata/sdk-model").IdentifierRef) => void;
|
|
21
|
-
onParameterChangeByTab: (tabId: string, ref: import("@gooddata/sdk-model").IdentifierRef, value: string | number) => void;
|
|
22
|
-
onParameterDeleteByTab: (tabId: string, ref: import("@gooddata/sdk-model").IdentifierRef) => void;
|
|
23
|
-
applyLatest: () => void;
|
|
24
|
-
onStoreParametersChange: (storeParameters: boolean) => void;
|
|
25
|
-
selectedFilters: import("@gooddata/sdk-model").FilterContextItem[];
|
|
26
|
-
availableFilters: import("@gooddata/sdk-model").FilterContextItem[] | undefined;
|
|
27
|
-
storeFilters: boolean;
|
|
28
|
-
filtersByTab: import("../../../../../index.js").IAutomationFiltersTab[] | undefined;
|
|
29
|
-
editedFiltersByTab: Record<string, import("@gooddata/sdk-model").FilterContextItem[]> | undefined;
|
|
30
|
-
onFiltersChange: (filters: import("@gooddata/sdk-model").FilterContextItem[], storeFiltersParam?: boolean | undefined) => void;
|
|
31
|
-
onFiltersByTabChange: (newFiltersByTab: Record<string, import("@gooddata/sdk-model").FilterContextItem[]>, storeFiltersParam?: boolean | undefined) => void;
|
|
32
|
-
onApplyCurrentFilters: () => void;
|
|
33
|
-
onStoreFiltersChange: (value: boolean, filters?: import("@gooddata/sdk-model").FilterContextItem[] | undefined, filtersByTabParam?: Record<string, import("@gooddata/sdk-model").FilterContextItem[]> | undefined) => void;
|
|
34
|
-
automationIsValid: boolean;
|
|
35
|
-
filtersAreStale: boolean;
|
|
36
|
-
defaultUser: import("@gooddata/sdk-model").IAutomationRecipient;
|
|
37
|
-
areDashboardFiltersChanged: boolean;
|
|
38
|
-
originalAutomation: import("@gooddata/sdk-model").IAutomationMetadataObjectDefinition;
|
|
39
|
-
editedAutomation: import("@gooddata/sdk-model").IAutomationMetadataObjectDefinition;
|
|
40
|
-
isCronValid: boolean;
|
|
41
|
-
notificationChannels: import("@gooddata/sdk-model").INotificationChannelIdentifier[] | import("@gooddata/sdk-model").INotificationChannelMetadataObject[];
|
|
42
|
-
isDashboardExportSelected: boolean;
|
|
43
|
-
isCsvExportSelected: boolean;
|
|
44
|
-
isXlsxExportSelected: boolean;
|
|
45
|
-
xlsxSettings: {
|
|
46
|
-
mergeHeaders: boolean;
|
|
47
|
-
exportInfo: boolean;
|
|
48
|
-
};
|
|
49
|
-
pdfSettings: {
|
|
50
|
-
pageSize: "A3" | "A4" | "LETTER";
|
|
51
|
-
orientation: "landscape" | "portrait";
|
|
52
|
-
exportInfo: boolean;
|
|
53
|
-
};
|
|
54
|
-
csvSettings: {
|
|
55
|
-
delimiter: string;
|
|
56
|
-
};
|
|
57
|
-
csvRawSettings: {
|
|
58
|
-
delimiter: string;
|
|
59
|
-
};
|
|
60
|
-
startDate: Date;
|
|
61
|
-
allowOnlyLoggedUserRecipients: boolean;
|
|
62
|
-
allowExternalRecipients: boolean;
|
|
63
|
-
validationErrorMessage: string | undefined;
|
|
64
|
-
isSubmitDisabled: boolean | undefined;
|
|
65
|
-
selectedAttachments: ("CSV" | "CSV_RAW" | "HTML" | "PDF" | "PDF_SLIDES" | "PDF_TABULAR" | "PNG" | "PPTX" | "XLSX")[];
|
|
66
|
-
isParentValid: boolean;
|
|
67
|
-
onTitleChange: (value: string, isValid: boolean) => void;
|
|
68
|
-
onRecurrenceChange: (cronExpression: string, startDate: Date | null, isValid: boolean) => void;
|
|
69
|
-
onEvaluationModeChange: (isShared: boolean) => void;
|
|
70
|
-
onDestinationChange: (notificationChannelId: string) => void;
|
|
71
|
-
onRecipientsChange: (updatedRecipients: import("@gooddata/sdk-model").IAutomationRecipient[]) => void;
|
|
72
|
-
onSubjectChange: (value: string | number, isValid: boolean) => void;
|
|
73
|
-
onMessageChange: (value: string, isValid: boolean) => void;
|
|
74
|
-
onDashboardAttachmentsChange: (formats: import("@gooddata/sdk-model").DashboardAttachmentType[]) => void;
|
|
75
|
-
onWidgetAttachmentsChange: (formats: import("@gooddata/sdk-model").WidgetAttachmentType[]) => void;
|
|
76
|
-
onXlsxSettingsChange: (settings: import("@gooddata/sdk-model").IExportDefinitionVisualizationObjectSettings) => void;
|
|
77
|
-
onPdfSettingsChange: (settings: import("@gooddata/sdk-model").IExportDefinitionVisualizationObjectSettings) => void;
|
|
78
|
-
onCsvSettingsChange: (settings: import("@gooddata/sdk-model").IExportDefinitionVisualizationObjectSettings) => void;
|
|
79
|
-
onCsvRawSettingsChange: (settings: import("@gooddata/sdk-model").IExportDefinitionVisualizationObjectSettings) => void;
|
|
80
|
-
slidesTemplateIds: {
|
|
81
|
-
PPTX: string | undefined;
|
|
82
|
-
PDF_SLIDES: string | undefined;
|
|
83
|
-
PDF: string | undefined;
|
|
84
|
-
};
|
|
85
|
-
onSlidesTemplateIdChange: (templateId: string | undefined, format: "PDF" | "PDF_SLIDES" | "PPTX") => void;
|
|
86
|
-
setParametersWire: (wire: Record<string, import("@gooddata/sdk-model").IDashboardExportParameter[]> | undefined) => void;
|
|
87
|
-
enableAutomationEvaluationMode: boolean;
|
|
88
|
-
};
|
|
89
|
-
//# sourceMappingURL=useEditScheduledEmail.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useEditScheduledEmail.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAQ9D,MAAM,WAAW,2BAA2B;IACxC,wBAAwB,EAAE,MAAM,CAAC;IACjC,yBAAyB,CAAC,EAAE,MAAM,CAAC;IACnC;;;;OAIG;IACH,kBAAkB,EAAE,WAAW,CAAC;CACnC;AAED,wBAAgB,qBAAqB,CAAC,EAClC,wBAAwB,EACxB,yBAAyB,EACzB,kBAAkB,EACrB,EAAE,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoM7B"}
|