@gooddata/sdk-ui-dashboard 11.44.0-alpha.0 → 11.44.0-alpha.2
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/NOTICE +75 -75
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -1
- package/esm/kdaDialog/dialog/KdaDialog.d.ts.map +1 -1
- package/esm/kdaDialog/dialog/KdaDialog.js +2 -1
- package/esm/kdaDialog/dialog/KdaDialogActionButtons.d.ts +2 -1
- package/esm/kdaDialog/dialog/KdaDialogActionButtons.d.ts.map +1 -1
- package/esm/kdaDialog/dialog/KdaDialogActionButtons.js +9 -6
- package/esm/kdaDialog/dialog/KdaDialogFloatingStatusBar.d.ts +4 -2
- package/esm/kdaDialog/dialog/KdaDialogFloatingStatusBar.d.ts.map +1 -1
- package/esm/kdaDialog/dialog/KdaDialogFloatingStatusBar.js +4 -4
- package/esm/kdaDialog/dialog/hooks/useKdaDialogAccessibility.d.ts +1 -0
- package/esm/kdaDialog/dialog/hooks/useKdaDialogAccessibility.d.ts.map +1 -1
- package/esm/kdaDialog/dialog/hooks/useKdaDialogAccessibility.js +6 -4
- package/esm/model/commandHandlers/dashboard/common/parameterHydration.js +2 -2
- package/esm/model/commands/executionResults.d.ts +18 -0
- package/esm/model/commands/executionResults.d.ts.map +1 -1
- package/esm/model/commands/executionResults.js +22 -0
- package/esm/model/react/useWidgetExecutionsHandler.d.ts.map +1 -1
- package/esm/model/react/useWidgetExecutionsHandler.js +18 -3
- package/esm/model/store/tabs/parameters/parametersHelpers.d.ts +58 -6
- package/esm/model/store/tabs/parameters/parametersHelpers.d.ts.map +1 -1
- package/esm/model/store/tabs/parameters/parametersHelpers.js +114 -22
- package/esm/model/store/tabs/parameters/parametersSelectors.d.ts +16 -1
- package/esm/model/store/tabs/parameters/parametersSelectors.d.ts.map +1 -1
- package/esm/model/store/tabs/parameters/parametersSelectors.js +51 -19
- package/esm/presentation/automations/connectors/ScheduledEmailConnector.d.ts +27 -0
- package/esm/presentation/automations/connectors/ScheduledEmailConnector.d.ts.map +1 -0
- package/esm/presentation/automations/connectors/ScheduledEmailConnector.js +107 -0
- package/esm/presentation/automations/connectors/hooks/useBuildAlertingDialogContext.d.ts.map +1 -1
- package/esm/presentation/automations/connectors/hooks/useBuildAlertingDialogContext.js +16 -55
- package/esm/presentation/automations/connectors/hooks/useBuildAutomationsContext.d.ts.map +1 -1
- package/esm/presentation/automations/connectors/hooks/useBuildAutomationsContext.js +7 -1
- package/esm/presentation/automations/connectors/hooks/useBuildAutomationsContext.test.js +15 -0
- package/esm/presentation/automations/connectors/hooks/useBuildScheduledEmailDialogContext.d.ts +8 -0
- package/esm/presentation/automations/connectors/hooks/useBuildScheduledEmailDialogContext.d.ts.map +1 -0
- package/esm/presentation/automations/connectors/hooks/useBuildScheduledEmailDialogContext.js +102 -0
- package/esm/presentation/automations/connectors/hooks/useBuildScheduledEmailDialogContext.test.d.ts +2 -0
- package/esm/presentation/automations/connectors/hooks/useBuildScheduledEmailDialogContext.test.d.ts.map +1 -0
- package/esm/presentation/automations/connectors/hooks/useBuildScheduledEmailDialogContext.test.js +156 -0
- package/esm/presentation/automations/connectors/hooks/useCommandAsPromise.d.ts +26 -0
- package/esm/presentation/automations/connectors/hooks/useCommandAsPromise.d.ts.map +1 -0
- package/esm/presentation/automations/connectors/hooks/useCommandAsPromise.js +47 -0
- package/esm/presentation/automations/contexts/AutomationsContext.d.ts +2 -0
- package/esm/presentation/automations/contexts/AutomationsContext.d.ts.map +1 -1
- package/esm/presentation/automations/contexts/ScheduledEmailDialogContext.d.ts +54 -0
- package/esm/presentation/automations/contexts/ScheduledEmailDialogContext.d.ts.map +1 -0
- package/esm/presentation/automations/contexts/ScheduledEmailDialogContext.js +11 -0
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/DefaultScheduledEmailDialog.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/DefaultScheduledEmailDialog.js +11 -37
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.d.ts +6 -5
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.js +7 -23
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useFiltersForDashboardScheduledExportInfo.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useFiltersForDashboardScheduledExportInfo.js +2 -7
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useSaveScheduledEmailToBackend.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useSaveScheduledEmailToBackend.js +37 -37
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduleValidation.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduleValidation.js +3 -4
- package/esm/presentation/automations/scheduledEmail/types.d.ts +5 -3
- package/esm/presentation/automations/scheduledEmail/types.d.ts.map +1 -1
- package/esm/presentation/automations/shared/automationFilters/components/AutomationDateFilter.test.js +2 -0
- package/esm/presentation/dashboard/DashboardHeader/DashboardHeader.d.ts.map +1 -1
- package/esm/presentation/dashboard/DashboardHeader/DashboardHeader.js +2 -2
- package/esm/presentation/dashboard/components/ToastMessages.d.ts.map +1 -1
- package/esm/presentation/dashboard/components/ToastMessages.js +3 -1
- package/esm/presentation/filterBar/filterBar/filterViews/FilterViewsList.d.ts.map +1 -1
- package/esm/presentation/filterBar/filterBar/filterViews/FilterViewsList.js +3 -2
- package/esm/presentation/filterBar/parameterFilter/useParameterToastMessages.d.ts +12 -0
- package/esm/presentation/filterBar/parameterFilter/useParameterToastMessages.d.ts.map +1 -0
- package/esm/presentation/filterBar/parameterFilter/useParameterToastMessages.js +51 -0
- package/esm/presentation/localization/bundles/de-DE.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/en-AU.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/en-GB.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/en-US.localization-bundle.d.ts +12 -0
- package/esm/presentation/localization/bundles/en-US.localization-bundle.d.ts.map +1 -1
- package/esm/presentation/localization/bundles/en-US.localization-bundle.js +12 -0
- package/esm/presentation/localization/bundles/es-419.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/es-ES.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/fi-FI.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/fr-CA.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/fr-FR.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/id-ID.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/it-IT.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/ja-JP.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/ko-KR.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/nl-NL.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/pl-PL.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/pt-BR.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/pt-PT.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/ru-RU.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/sl-SI.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/th-TH.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/tr-TR.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/uk-UA.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/vi-VN.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/zh-HK.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/zh-Hans.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/presentation/localization/bundles/zh-Hant.localization-bundle.d.ts +4 -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 +4 -0
- package/esm/sdk-ui-dashboard.d.ts +23 -1
- package/package.json +20 -20
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useCreateScheduledEmail.d.ts +0 -11
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useCreateScheduledEmail.d.ts.map +0 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useCreateScheduledEmail.js +0 -27
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useUpdateScheduledEmail.d.ts +0 -11
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useUpdateScheduledEmail.d.ts.map +0 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useUpdateScheduledEmail.js +0 -27
- package/esm/presentation/automations/scheduledEmail/hooks/useWidgetAutomationFilters.d.ts +0 -3
- package/esm/presentation/automations/scheduledEmail/hooks/useWidgetAutomationFilters.d.ts.map +0 -1
- package/esm/presentation/automations/scheduledEmail/hooks/useWidgetAutomationFilters.js +0 -5
- package/esm/presentation/dashboard/DashboardHeader/ScheduledEmailDialogProvider.d.ts +0 -2
- package/esm/presentation/dashboard/DashboardHeader/ScheduledEmailDialogProvider.d.ts.map +0 -1
- package/esm/presentation/dashboard/DashboardHeader/ScheduledEmailDialogProvider.js +0 -45
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Fragment as _Fragment, jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { ScheduledEmailAutomationsProvider, ScheduledEmailConnector, } from "../../automations/connectors/ScheduledEmailConnector.js";
|
|
2
3
|
import { CancelEditDialog } from "../../cancelEditDialog/CancelEditDialog.js";
|
|
3
4
|
import { useCancelEditDialog } from "../../cancelEditDialog/DefaultCancelEditDialog.js";
|
|
4
5
|
import { useDeleteDialogProps } from "../../deleteDialog/DefaultDeleteDialog.js";
|
|
@@ -21,7 +22,6 @@ import { ToastMessages } from "../components/ToastMessages.js";
|
|
|
21
22
|
import { AlertingDialogProvider } from "./AlertingDialogProvider.js";
|
|
22
23
|
import { DashboardTabs, useDashboardTabsProps } from "./DashboardTabs.js";
|
|
23
24
|
import { DensityDialogProvider } from "./DensityDialogProvider.js";
|
|
24
|
-
import { ScheduledEmailDialogProvider } from "./ScheduledEmailDialogProvider.js";
|
|
25
25
|
import { SettingsDialogProvider } from "./SettingsDialogProvider.js";
|
|
26
26
|
import { ShareDialogDashboardHeader } from "./ShareDialogDashboardHeader.js";
|
|
27
27
|
// these wrapper components are here to prevent the whole DashboardHeader from re-rendering whenever some
|
|
@@ -62,6 +62,6 @@ export function DashboardTabsWrapper() {
|
|
|
62
62
|
// (e.g. opening email dialog) do not re-render the dashboard body
|
|
63
63
|
export function DashboardHeader() {
|
|
64
64
|
return (_jsxs(_Fragment, { children: [
|
|
65
|
-
_jsx(ToastMessages, {}), _jsx(ExportXlsxDialogProvider, {}), _jsx(ExportCsvDialogProvider, {}), _jsx(ExportTabularPdfDialogProvider, {}), _jsx(ExportTemplateDialogProvider, {}), _jsx(
|
|
65
|
+
_jsx(ToastMessages, {}), _jsx(ExportXlsxDialogProvider, {}), _jsx(ExportCsvDialogProvider, {}), _jsx(ExportTabularPdfDialogProvider, {}), _jsx(ExportTemplateDialogProvider, {}), _jsx(ScheduledEmailAutomationsProvider, { children: _jsx(ScheduledEmailConnector, {}) }), _jsx(AlertingDialogProvider, {}), _jsx(ShareDialogDashboardHeader, {}), _jsx(SettingsDialogProvider, {}), _jsx(DensityDialogProvider, {}), _jsx(DeleteDialogWrapper, {}), _jsx(WidgetDeleteDialogWrapper, {}), _jsx(KpiDeleteDialogWrapper, {}), _jsx(SaveAsDialogWrapper, {}), _jsx(TopBarWrapper, {}), _jsx(DashboardTabsWrapper, {}), _jsx(FilterBarWrapper, {}), _jsx(CancelEditDialogWrapper, {})
|
|
66
66
|
] }));
|
|
67
67
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ToastMessages.d.ts","sourceRoot":"","sources":["../../../../src/presentation/dashboard/components/ToastMessages.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ToastMessages.d.ts","sourceRoot":"","sources":["../../../../src/presentation/dashboard/components/ToastMessages.tsx"],"names":[],"mappings":"AAYA;;GAEG;AACH,wBAAgB,aAAa,4CAwB5B"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
// (C) 2022-
|
|
2
|
+
// (C) 2022-2026 GoodData Corporation
|
|
3
3
|
import { useCallback, useMemo } from "react";
|
|
4
4
|
import { NonContextToastsInterop } from "@gooddata/sdk-ui-kit";
|
|
5
|
+
import { useParameterToastMessages } from "../../filterBar/parameterFilter/useParameterToastMessages.js";
|
|
5
6
|
import { useCrossFilteringMessages } from "./useCrossFilteringMessages.js";
|
|
6
7
|
import { useDrillValidationMessages } from "./useDrillValidationMessages.js";
|
|
7
8
|
import { useFilterContextValidationMessages } from "./useFilterContextValidationMessages.js";
|
|
@@ -12,6 +13,7 @@ export function ToastMessages() {
|
|
|
12
13
|
const { messages: drillValidationMessages, removeMessage: removeDrillValidationMessage } = useDrillValidationMessages();
|
|
13
14
|
const { messages: filterContextValidationMessages, removeMessage: removeFilterContextValidationMessage } = useFilterContextValidationMessages();
|
|
14
15
|
useCrossFilteringMessages();
|
|
16
|
+
useParameterToastMessages();
|
|
15
17
|
const messages = useMemo(() => [...drillValidationMessages, ...filterContextValidationMessages], [drillValidationMessages, filterContextValidationMessages]);
|
|
16
18
|
const removeMessage = useCallback(
|
|
17
19
|
// try removing the id from both collections
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FilterViewsList.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/filterBar/filterBar/filterViews/FilterViewsList.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,KAAK,oBAAoB,EAAkB,MAAM,qBAAqB,CAAC;AAmMhF,MAAM,WAAW,6BAA6B;IAC1C,WAAW,EAAE,oBAAoB,EAAE,GAAG,SAAS,CAAC;IAChD,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,eAAe,CAAC,EAC5B,WAAgB,EAChB,QAAQ,EACR,OAAO,EACP,OAAO,EAAE,WAAW,EACvB,EAAE,6BAA6B,
|
|
1
|
+
{"version":3,"file":"FilterViewsList.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/filterBar/filterBar/filterViews/FilterViewsList.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,KAAK,oBAAoB,EAAkB,MAAM,qBAAqB,CAAC;AAmMhF,MAAM,WAAW,6BAA6B;IAC1C,WAAW,EAAE,oBAAoB,EAAE,GAAG,SAAS,CAAC;IAChD,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,eAAe,CAAC,EAC5B,WAAgB,EAChB,QAAQ,EACR,OAAO,EACP,OAAO,EAAE,WAAW,EACvB,EAAE,6BAA6B,2CAkN/B"}
|
|
@@ -47,6 +47,7 @@ export function FilterViewsList({ filterViews = [], onAddNew, onClose, titleId:
|
|
|
47
47
|
const canCreateFilterView = useDashboardSelector(selectCanCreateFilterView);
|
|
48
48
|
const id = useId();
|
|
49
49
|
const createViewId = `create-view-${id}`;
|
|
50
|
+
const infoButtonId = `filter-view-info-${id}`;
|
|
50
51
|
const filterViewTooltipId = `filter-view-tooltip-${id}`;
|
|
51
52
|
const titleId = titleIdProp ?? `filter-views-title-${id}`;
|
|
52
53
|
const getItemAdditionalActions = useCallback(() => {
|
|
@@ -109,12 +110,12 @@ export function FilterViewsList({ filterViews = [], onAddNew, onClose, titleId:
|
|
|
109
110
|
}
|
|
110
111
|
setFocusedAction(SELECT_ITEM_ACTION);
|
|
111
112
|
}, [containerRef, setFocusedAction]);
|
|
112
|
-
return (_jsxs(UiFocusManager, { enableFocusTrap: true, enableAutofocus: { refocusKey, initialFocus:
|
|
113
|
+
return (_jsxs(UiFocusManager, { enableFocusTrap: true, enableAutofocus: { refocusKey, initialFocus: infoButtonId }, children: [filterViewToDelete ? (_jsx(FilterViewDeleteConfirm, { filterView: filterViewToDelete, onConfirm: () => {
|
|
113
114
|
dispatch(deleteFilterView(filterViewToDelete.ref));
|
|
114
115
|
setFilterViewToDelete(undefined);
|
|
115
116
|
}, onCancel: () => setFilterViewToDelete(undefined) })) : null, _jsxs("div", { className: "configuration-panel configuration-panel__filter-view__list", children: [
|
|
116
117
|
_jsx("div", { className: "configuration-panel-header", children: _jsxs("div", { className: "gd-title-with-icon", children: [
|
|
117
|
-
_jsx(Typography, { tagName: "h3", className: "configuration-panel-header-title", id: titleId, children: _jsx(FormattedMessage, { id: "filters.filterViews.dropdown.title" }) }), _jsx(UiTooltip, { id: filterViewTooltipId, arrowPlacement: "top-end", content: contentTooltip, anchor: _jsx(UiIconButton, { icon: "question", variant: "tertiary", size: "small", accessibilityConfig: {
|
|
118
|
+
_jsx(Typography, { tagName: "h3", className: "configuration-panel-header-title", id: titleId, children: _jsx(FormattedMessage, { id: "filters.filterViews.dropdown.title" }) }), _jsx(UiTooltip, { id: filterViewTooltipId, arrowPlacement: "top-end", content: contentTooltip, anchor: _jsx(UiIconButton, { id: infoButtonId, icon: "question", variant: "tertiary", size: "small", accessibilityConfig: {
|
|
118
119
|
ariaDescribedBy: filterViewTooltipId,
|
|
119
120
|
ariaLabel: intl.formatMessage({
|
|
120
121
|
id: "filters.filterViews.tooltip.ariaLabel",
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pushes one warning toast per parameter that no longer reconciles against the workspace catalog
|
|
3
|
+
* (out of range, removed, or type-incompatible), the message chosen by reconciliation kind.
|
|
4
|
+
*
|
|
5
|
+
* Each ref is toasted at most once per session: {@link selectParameterReconciliations} returns a
|
|
6
|
+
* fresh array whenever the set changes (catalog loads, a value is fixed), so a ref-key guard — not
|
|
7
|
+
* the effect's array identity — is what prevents re-toasting the survivors on every recompute.
|
|
8
|
+
*
|
|
9
|
+
* @internal
|
|
10
|
+
*/
|
|
11
|
+
export declare function useParameterToastMessages(): void;
|
|
12
|
+
//# sourceMappingURL=useParameterToastMessages.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useParameterToastMessages.d.ts","sourceRoot":"","sources":["../../../../src/presentation/filterBar/parameterFilter/useParameterToastMessages.tsx"],"names":[],"mappings":"AAuBA;;;;;;;;;GASG;AACH,wBAAgB,yBAAyB,IAAI,IAAI,CAsBhD"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
// (C) 2026 GoodData Corporation
|
|
3
|
+
import { useEffect, useRef } from "react";
|
|
4
|
+
import { defineMessages } from "react-intl";
|
|
5
|
+
import { objRefToString } from "@gooddata/sdk-model";
|
|
6
|
+
import { useToastMessage } from "@gooddata/sdk-ui-kit";
|
|
7
|
+
import { useDashboardSelector } from "../../../model/react/DashboardStoreProvider.js";
|
|
8
|
+
import { selectIsInExportMode } from "../../../model/store/renderMode/renderModeSelectors.js";
|
|
9
|
+
import { selectParameterReconciliations } from "../../../model/store/tabs/parameters/parametersSelectors.js";
|
|
10
|
+
const messages = defineMessages({
|
|
11
|
+
reset: { id: "parameter.toast.reset" },
|
|
12
|
+
removed: { id: "parameter.toast.removed" },
|
|
13
|
+
incompatible: { id: "parameter.toast.incompatible" },
|
|
14
|
+
});
|
|
15
|
+
// Longer than the 2500ms toast default: this warning is actionable and needs reading time.
|
|
16
|
+
const TOAST_DURATION_MS = 8000;
|
|
17
|
+
/**
|
|
18
|
+
* Pushes one warning toast per parameter that no longer reconciles against the workspace catalog
|
|
19
|
+
* (out of range, removed, or type-incompatible), the message chosen by reconciliation kind.
|
|
20
|
+
*
|
|
21
|
+
* Each ref is toasted at most once per session: {@link selectParameterReconciliations} returns a
|
|
22
|
+
* fresh array whenever the set changes (catalog loads, a value is fixed), so a ref-key guard — not
|
|
23
|
+
* the effect's array identity — is what prevents re-toasting the survivors on every recompute.
|
|
24
|
+
*
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
export function useParameterToastMessages() {
|
|
28
|
+
const reconciliations = useDashboardSelector(selectParameterReconciliations);
|
|
29
|
+
const isExportMode = useDashboardSelector(selectIsInExportMode);
|
|
30
|
+
const { addWarning } = useToastMessage();
|
|
31
|
+
const notifiedRefs = useRef(new Set());
|
|
32
|
+
useEffect(() => {
|
|
33
|
+
if (isExportMode) {
|
|
34
|
+
return;
|
|
35
|
+
}
|
|
36
|
+
for (const entry of reconciliations) {
|
|
37
|
+
const refKey = objRefToString(entry.ref);
|
|
38
|
+
if (notifiedRefs.current.has(refKey)) {
|
|
39
|
+
continue;
|
|
40
|
+
}
|
|
41
|
+
notifiedRefs.current.add(refKey);
|
|
42
|
+
addWarning(messages[entry.kind], {
|
|
43
|
+
values: { name: entry.name, b: bold },
|
|
44
|
+
duration: TOAST_DURATION_MS,
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
}, [reconciliations, addWarning, isExportMode]);
|
|
48
|
+
}
|
|
49
|
+
function bold(chunks) {
|
|
50
|
+
return _jsx("strong", { children: chunks });
|
|
51
|
+
}
|
|
@@ -24,6 +24,7 @@ export declare const de_DE: {
|
|
|
24
24
|
"filterBar.showAll": string;
|
|
25
25
|
"filterBar.showLess": string;
|
|
26
26
|
"filterBar.filterListAutoExpanded": string;
|
|
27
|
+
"filterBar.filterListAutoCollapsed": string;
|
|
27
28
|
"filterBar.unappliedFiltersNotification": string;
|
|
28
29
|
"filterBar.invalidFilterSelection": string;
|
|
29
30
|
"filterBar.applyFilters": string;
|
|
@@ -666,6 +667,9 @@ export declare const de_DE: {
|
|
|
666
667
|
"filters.filterViews.toast.viewNotSetAsDefault": string;
|
|
667
668
|
"filters.filterViews.toast.viewNotUnsetAsDefault": string;
|
|
668
669
|
"filters.filterViews.toast.viewNotApplied": string;
|
|
670
|
+
"parameter.toast.reset": string;
|
|
671
|
+
"parameter.toast.removed": string;
|
|
672
|
+
"parameter.toast.incompatible": string;
|
|
669
673
|
"filters.filterViews.list.ariaLabel.withActions": string;
|
|
670
674
|
"filters.filterViews.list.ariaLabel.noActions": string;
|
|
671
675
|
"filters.filterViews.add.title": string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"de-DE.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/de-DE.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"de-DE.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/de-DE.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA22BjB,CAAC"}
|
|
@@ -26,6 +26,7 @@ export const de_DE = {
|
|
|
26
26
|
"filterBar.showAll": "Alle anzeigen",
|
|
27
27
|
"filterBar.showLess": "Weniger anzeigen",
|
|
28
28
|
"filterBar.filterListAutoExpanded": "Filterliste wurde automatisch eingeblendet",
|
|
29
|
+
"filterBar.filterListAutoCollapsed": "Filterliste wurde automatisch eingeklappt",
|
|
29
30
|
"filterBar.unappliedFiltersNotification": "<link>Wenden Sie Filter</link> an, um aktualisierte Daten anzuzeigen.",
|
|
30
31
|
"filterBar.invalidFilterSelection": "Um Änderungen anzuwenden, wählen Sie gültige Werte für diese Filter aus: {names}",
|
|
31
32
|
"filterBar.applyFilters": "Alle Filter anwenden",
|
|
@@ -668,6 +669,9 @@ export const de_DE = {
|
|
|
668
669
|
"filters.filterViews.toast.viewNotSetAsDefault": "Fehler! Ihre Ansicht wurde nicht als Standard festgelegt. Bitte versuchen Sie es erneut.",
|
|
669
670
|
"filters.filterViews.toast.viewNotUnsetAsDefault": "Fehler! Ihre Ansicht ist immer noch als Standard festgelegt. Bitte versuchen Sie es erneut.",
|
|
670
671
|
"filters.filterViews.toast.viewNotApplied": "Fehler! Ihre Ansicht wurde nicht angewendet. Bitte versuchen Sie es erneut.",
|
|
672
|
+
"parameter.toast.reset": "<b>Warnung:</b> Parameter \"{name}\" liegt außerhalb des zulässigen Bereichs. Daher wird der Standardwert angewendet, bis Sie einen gültigen Wert festlegen.",
|
|
673
|
+
"parameter.toast.removed": "<b>Warnung:</b> Parameter \"{name}\" wurde entfernt, da er nicht mehr vorhanden ist.",
|
|
674
|
+
"parameter.toast.incompatible": "<b>Warnung:</b> Parameter \"{name}\" ist nicht mehr kompatibel und wurde ignoriert.",
|
|
671
675
|
"filters.filterViews.list.ariaLabel.withActions": "Liste der gespeicherten Ansichten. Verwenden Sie die rechte Pfeiltaste, um zur Aktion \"Als Standard festlegen\" und dann zur Aktion \"Löschen\" zu wechseln.",
|
|
672
676
|
"filters.filterViews.list.ariaLabel.noActions": "Liste der gespeicherten Ansichten",
|
|
673
677
|
"filters.filterViews.add.title": "Ansicht erstellen",
|
|
@@ -24,6 +24,7 @@ export declare const en_AU: {
|
|
|
24
24
|
"filterBar.showAll": string;
|
|
25
25
|
"filterBar.showLess": string;
|
|
26
26
|
"filterBar.filterListAutoExpanded": string;
|
|
27
|
+
"filterBar.filterListAutoCollapsed": string;
|
|
27
28
|
"filterBar.unappliedFiltersNotification": string;
|
|
28
29
|
"filterBar.invalidFilterSelection": string;
|
|
29
30
|
"filterBar.applyFilters": string;
|
|
@@ -666,6 +667,9 @@ export declare const en_AU: {
|
|
|
666
667
|
"filters.filterViews.toast.viewNotSetAsDefault": string;
|
|
667
668
|
"filters.filterViews.toast.viewNotUnsetAsDefault": string;
|
|
668
669
|
"filters.filterViews.toast.viewNotApplied": string;
|
|
670
|
+
"parameter.toast.reset": string;
|
|
671
|
+
"parameter.toast.removed": string;
|
|
672
|
+
"parameter.toast.incompatible": string;
|
|
669
673
|
"filters.filterViews.list.ariaLabel.withActions": string;
|
|
670
674
|
"filters.filterViews.list.ariaLabel.noActions": string;
|
|
671
675
|
"filters.filterViews.add.title": string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en-AU.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/en-AU.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"en-AU.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/en-AU.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA22BjB,CAAC"}
|
|
@@ -26,6 +26,7 @@ export const en_AU = {
|
|
|
26
26
|
"filterBar.showAll": "Display all",
|
|
27
27
|
"filterBar.showLess": "Show less",
|
|
28
28
|
"filterBar.filterListAutoExpanded": "Filter list has been automatically expanded",
|
|
29
|
+
"filterBar.filterListAutoCollapsed": "Filter list has been automatically collapsed",
|
|
29
30
|
"filterBar.unappliedFiltersNotification": "<link>Apply filters</link> to see updated data.",
|
|
30
31
|
"filterBar.invalidFilterSelection": "To apply changes, select valid values for these filters: {names}",
|
|
31
32
|
"filterBar.applyFilters": "Apply all filters",
|
|
@@ -668,6 +669,9 @@ export const en_AU = {
|
|
|
668
669
|
"filters.filterViews.toast.viewNotSetAsDefault": "Failure! Your view was not set as default. Please try again.",
|
|
669
670
|
"filters.filterViews.toast.viewNotUnsetAsDefault": "Failure! Your view is still set as default. Please try again.",
|
|
670
671
|
"filters.filterViews.toast.viewNotApplied": "Failure! Your view was not applied. Please try again.",
|
|
672
|
+
"parameter.toast.reset": "<b>Warning:</b> Parameter \"{name}\" is out of range, so the default value is used until you set a valid value.",
|
|
673
|
+
"parameter.toast.removed": "<b>Warning:</b> Parameter \"{name}\" was removed because it does not exist any more.",
|
|
674
|
+
"parameter.toast.incompatible": "<b>Warning:</b> Parameter \"{name}\" is no longer compatible and has been disregarded.",
|
|
671
675
|
"filters.filterViews.list.ariaLabel.withActions": "List of saved views. Use the right arrow key to navigate to the ‘Set as default’ action, then to the ‘delete’ action.",
|
|
672
676
|
"filters.filterViews.list.ariaLabel.noActions": "List of saved views",
|
|
673
677
|
"filters.filterViews.add.title": "Create view",
|
|
@@ -24,6 +24,7 @@ export declare const en_GB: {
|
|
|
24
24
|
"filterBar.showAll": string;
|
|
25
25
|
"filterBar.showLess": string;
|
|
26
26
|
"filterBar.filterListAutoExpanded": string;
|
|
27
|
+
"filterBar.filterListAutoCollapsed": string;
|
|
27
28
|
"filterBar.unappliedFiltersNotification": string;
|
|
28
29
|
"filterBar.invalidFilterSelection": string;
|
|
29
30
|
"filterBar.applyFilters": string;
|
|
@@ -666,6 +667,9 @@ export declare const en_GB: {
|
|
|
666
667
|
"filters.filterViews.toast.viewNotSetAsDefault": string;
|
|
667
668
|
"filters.filterViews.toast.viewNotUnsetAsDefault": string;
|
|
668
669
|
"filters.filterViews.toast.viewNotApplied": string;
|
|
670
|
+
"parameter.toast.reset": string;
|
|
671
|
+
"parameter.toast.removed": string;
|
|
672
|
+
"parameter.toast.incompatible": string;
|
|
669
673
|
"filters.filterViews.list.ariaLabel.withActions": string;
|
|
670
674
|
"filters.filterViews.list.ariaLabel.noActions": string;
|
|
671
675
|
"filters.filterViews.add.title": string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en-GB.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/en-GB.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"en-GB.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/en-GB.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA22BjB,CAAC"}
|
|
@@ -26,6 +26,7 @@ export const en_GB = {
|
|
|
26
26
|
"filterBar.showAll": "Show all",
|
|
27
27
|
"filterBar.showLess": "Show less",
|
|
28
28
|
"filterBar.filterListAutoExpanded": "Filter list has been automatically expanded",
|
|
29
|
+
"filterBar.filterListAutoCollapsed": "Filter list has been automatically collapsed",
|
|
29
30
|
"filterBar.unappliedFiltersNotification": "<link>Apply filters</link> to see updated data.",
|
|
30
31
|
"filterBar.invalidFilterSelection": "To apply changes, select valid values for these filters: {names}",
|
|
31
32
|
"filterBar.applyFilters": "Apply all filters",
|
|
@@ -668,6 +669,9 @@ export const en_GB = {
|
|
|
668
669
|
"filters.filterViews.toast.viewNotSetAsDefault": "Failure! Your view was not set as default. Please try again.",
|
|
669
670
|
"filters.filterViews.toast.viewNotUnsetAsDefault": "Failure! Your view is still set as default. Please try again.",
|
|
670
671
|
"filters.filterViews.toast.viewNotApplied": "Failure! Your view was not applied. Please try again.",
|
|
672
|
+
"parameter.toast.reset": "<b>Warning:</b> Parameter \"{name}\" is out of range, so the default value is applied until you set a valid one.",
|
|
673
|
+
"parameter.toast.removed": "<b>Warning:</b> Parameter \"{name}\" was removed because it no longer exists.",
|
|
674
|
+
"parameter.toast.incompatible": "<b>Warning:</b> Parameter \"{name}\" is no longer compatible and has been ignored.",
|
|
671
675
|
"filters.filterViews.list.ariaLabel.withActions": "List of saved views. Use the right arrow key to navigate to the ‘Set as default’ action, then to the ‘delete’ action.",
|
|
672
676
|
"filters.filterViews.list.ariaLabel.noActions": "List of saved views",
|
|
673
677
|
"filters.filterViews.add.title": "Create view",
|
|
@@ -2671,6 +2671,18 @@ export declare const en_US: {
|
|
|
2671
2671
|
text: string;
|
|
2672
2672
|
crowdinContext: string;
|
|
2673
2673
|
};
|
|
2674
|
+
"parameter.toast.reset": {
|
|
2675
|
+
text: string;
|
|
2676
|
+
crowdinContext: string;
|
|
2677
|
+
};
|
|
2678
|
+
"parameter.toast.removed": {
|
|
2679
|
+
text: string;
|
|
2680
|
+
crowdinContext: string;
|
|
2681
|
+
};
|
|
2682
|
+
"parameter.toast.incompatible": {
|
|
2683
|
+
text: string;
|
|
2684
|
+
crowdinContext: string;
|
|
2685
|
+
};
|
|
2674
2686
|
"filters.filterViews.list.ariaLabel.withActions": {
|
|
2675
2687
|
text: string;
|
|
2676
2688
|
crowdinContext: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en-US.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/en-US.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"en-US.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/en-US.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAy6GjB,CAAC"}
|
|
@@ -2673,6 +2673,18 @@ export const en_US = {
|
|
|
2673
2673
|
"text": "Failure! Your view was not applied. Please try again.",
|
|
2674
2674
|
"crowdinContext": "Text shown when filter view was not applied."
|
|
2675
2675
|
},
|
|
2676
|
+
"parameter.toast.reset": {
|
|
2677
|
+
"text": "<b>Warning:</b> Parameter \"{name}\" is out of range, so the default value is applied until you set a valid one.",
|
|
2678
|
+
"crowdinContext": "Warning toast shown on dashboard load when a saved parameter value is outside the parameter's allowed range; the workspace default is executed in its place. {name} is the parameter title; <b> renders the leading 'Warning:' label in bold."
|
|
2679
|
+
},
|
|
2680
|
+
"parameter.toast.removed": {
|
|
2681
|
+
"text": "<b>Warning:</b> Parameter \"{name}\" was removed because it no longer exists.",
|
|
2682
|
+
"crowdinContext": "Warning toast shown on dashboard load when a referenced parameter no longer exists in the workspace. {name} is the parameter title; <b> renders the leading 'Warning:' label in bold."
|
|
2683
|
+
},
|
|
2684
|
+
"parameter.toast.incompatible": {
|
|
2685
|
+
"text": "<b>Warning:</b> Parameter \"{name}\" is no longer compatible and has been ignored.",
|
|
2686
|
+
"crowdinContext": "Warning toast shown on dashboard load when a referenced parameter changed to a non-numeric type and can no longer be applied. {name} is the parameter title; <b> renders the leading 'Warning:' label in bold."
|
|
2687
|
+
},
|
|
2676
2688
|
"filters.filterViews.list.ariaLabel.withActions": {
|
|
2677
2689
|
"text": "List of saved views. Use the right arrow key to move to the ‘Set as default’ action, then to the ‘delete’ action.",
|
|
2678
2690
|
"crowdinContext": "Screen reader description for the list of saved views. Includes the possible keyboard actions."
|
|
@@ -24,6 +24,7 @@ export declare const es_419: {
|
|
|
24
24
|
"filterBar.showAll": string;
|
|
25
25
|
"filterBar.showLess": string;
|
|
26
26
|
"filterBar.filterListAutoExpanded": string;
|
|
27
|
+
"filterBar.filterListAutoCollapsed": string;
|
|
27
28
|
"filterBar.unappliedFiltersNotification": string;
|
|
28
29
|
"filterBar.invalidFilterSelection": string;
|
|
29
30
|
"filterBar.applyFilters": string;
|
|
@@ -666,6 +667,9 @@ export declare const es_419: {
|
|
|
666
667
|
"filters.filterViews.toast.viewNotSetAsDefault": string;
|
|
667
668
|
"filters.filterViews.toast.viewNotUnsetAsDefault": string;
|
|
668
669
|
"filters.filterViews.toast.viewNotApplied": string;
|
|
670
|
+
"parameter.toast.reset": string;
|
|
671
|
+
"parameter.toast.removed": string;
|
|
672
|
+
"parameter.toast.incompatible": string;
|
|
669
673
|
"filters.filterViews.list.ariaLabel.withActions": string;
|
|
670
674
|
"filters.filterViews.list.ariaLabel.noActions": string;
|
|
671
675
|
"filters.filterViews.add.title": string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"es-419.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/es-419.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"es-419.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/es-419.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA22BlB,CAAC"}
|
|
@@ -26,6 +26,7 @@ export const es_419 = {
|
|
|
26
26
|
"filterBar.showAll": "Mostrar todo",
|
|
27
27
|
"filterBar.showLess": "Mostrar menos",
|
|
28
28
|
"filterBar.filterListAutoExpanded": "La lista de filtros se expandió automáticamente",
|
|
29
|
+
"filterBar.filterListAutoCollapsed": "La lista de filtros se contrajo automáticamente",
|
|
29
30
|
"filterBar.unappliedFiltersNotification": "<link>Aplicar filtros</link> para ver los datos actualizados.",
|
|
30
31
|
"filterBar.invalidFilterSelection": "Para aplicar los cambios, seleccione valores válidos para estos filtros: {names}",
|
|
31
32
|
"filterBar.applyFilters": "Aplicar todos los filtros",
|
|
@@ -668,6 +669,9 @@ export const es_419 = {
|
|
|
668
669
|
"filters.filterViews.toast.viewNotSetAsDefault": "¡Fallo! Su vista no está configurada por defecto. Por favor, inténtelo de nuevo.",
|
|
669
670
|
"filters.filterViews.toast.viewNotUnsetAsDefault": "¡Fallo! Su vista sigue siendo la predeterminada. Por favor, inténtelo de nuevo.",
|
|
670
671
|
"filters.filterViews.toast.viewNotApplied": "¡Fallo! Su vista no se ha aplicado. Por favor, inténtelo de nuevo.",
|
|
672
|
+
"parameter.toast.reset": "<b>Advertencia:</b> El parámetro \"{name}\" está fuera de rango, por lo que se aplica el valor predeterminado hasta que establezca uno válido.",
|
|
673
|
+
"parameter.toast.removed": "<b>Advertencia:</b> Se eliminó el parámetro \"{name}\" porque ya no existe.",
|
|
674
|
+
"parameter.toast.incompatible": "<b>Advertencia:</b> El parámetro \"{name}\" ya no es compatible y se ignoró.",
|
|
671
675
|
"filters.filterViews.list.ariaLabel.withActions": "Lista de vistas guardadas. Utilice la tecla de flecha derecha para desplazarse a la acción \"Establecer como predeterminada\" y, a continuación, a la acción \"Eliminar\".",
|
|
672
676
|
"filters.filterViews.list.ariaLabel.noActions": "Lista de vistas guardadas",
|
|
673
677
|
"filters.filterViews.add.title": "Crear vista",
|
|
@@ -24,6 +24,7 @@ export declare const es_ES: {
|
|
|
24
24
|
"filterBar.showAll": string;
|
|
25
25
|
"filterBar.showLess": string;
|
|
26
26
|
"filterBar.filterListAutoExpanded": string;
|
|
27
|
+
"filterBar.filterListAutoCollapsed": string;
|
|
27
28
|
"filterBar.unappliedFiltersNotification": string;
|
|
28
29
|
"filterBar.invalidFilterSelection": string;
|
|
29
30
|
"filterBar.applyFilters": string;
|
|
@@ -666,6 +667,9 @@ export declare const es_ES: {
|
|
|
666
667
|
"filters.filterViews.toast.viewNotSetAsDefault": string;
|
|
667
668
|
"filters.filterViews.toast.viewNotUnsetAsDefault": string;
|
|
668
669
|
"filters.filterViews.toast.viewNotApplied": string;
|
|
670
|
+
"parameter.toast.reset": string;
|
|
671
|
+
"parameter.toast.removed": string;
|
|
672
|
+
"parameter.toast.incompatible": string;
|
|
669
673
|
"filters.filterViews.list.ariaLabel.withActions": string;
|
|
670
674
|
"filters.filterViews.list.ariaLabel.noActions": string;
|
|
671
675
|
"filters.filterViews.add.title": string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"es-ES.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/es-ES.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"es-ES.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/es-ES.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA22BjB,CAAC"}
|
|
@@ -26,6 +26,7 @@ export const es_ES = {
|
|
|
26
26
|
"filterBar.showAll": "Mostrar todo",
|
|
27
27
|
"filterBar.showLess": "Mostrar menos",
|
|
28
28
|
"filterBar.filterListAutoExpanded": "La lista de filtros se ha ampliado automáticamente",
|
|
29
|
+
"filterBar.filterListAutoCollapsed": "La lista de filtros se ha contraído automáticamente",
|
|
29
30
|
"filterBar.unappliedFiltersNotification": "<link>Aplique los filtros</link> para ver los datos actualizados.",
|
|
30
31
|
"filterBar.invalidFilterSelection": "Para aplicar los cambios, seleccione valores válidos para estos filtros {names}: ",
|
|
31
32
|
"filterBar.applyFilters": "Aplicar todos los filtros",
|
|
@@ -668,6 +669,9 @@ export const es_ES = {
|
|
|
668
669
|
"filters.filterViews.toast.viewNotSetAsDefault": "¡Fallo! Su vista no está configurada por defecto. Por favor, inténtelo de nuevo.",
|
|
669
670
|
"filters.filterViews.toast.viewNotUnsetAsDefault": "¡Fallo! Su vista sigue siendo la predeterminada. Por favor, inténtelo de nuevo.",
|
|
670
671
|
"filters.filterViews.toast.viewNotApplied": "¡Fallo! Su vista no se ha aplicado. Por favor, inténtelo de nuevo.",
|
|
672
|
+
"parameter.toast.reset": "<b>Advertencia:</b> El parámetro \"{name}\" está fuera de rango, por lo que se aplica el valor predeterminado hasta que establezca uno válido.",
|
|
673
|
+
"parameter.toast.removed": "<b>Advertencia:</b> El parámetro \"{name}\" se eliminó porque ya no existe.",
|
|
674
|
+
"parameter.toast.incompatible": "<b>Advertencia:</b> El parámetro \"{name}\" ya no es compatible y se ha ignorado.",
|
|
671
675
|
"filters.filterViews.list.ariaLabel.withActions": "Lista de vistas guardadas. Utilice la tecla de flecha derecha para desplazarse a la acción \"Establecer como predeterminada\" y, a continuación, a la acción \"Eliminar\".",
|
|
672
676
|
"filters.filterViews.list.ariaLabel.noActions": "Lista de vistas guardadas",
|
|
673
677
|
"filters.filterViews.add.title": "Crear vista",
|
|
@@ -24,6 +24,7 @@ export declare const fi_FI: {
|
|
|
24
24
|
"filterBar.showAll": string;
|
|
25
25
|
"filterBar.showLess": string;
|
|
26
26
|
"filterBar.filterListAutoExpanded": string;
|
|
27
|
+
"filterBar.filterListAutoCollapsed": string;
|
|
27
28
|
"filterBar.unappliedFiltersNotification": string;
|
|
28
29
|
"filterBar.invalidFilterSelection": string;
|
|
29
30
|
"filterBar.applyFilters": string;
|
|
@@ -666,6 +667,9 @@ export declare const fi_FI: {
|
|
|
666
667
|
"filters.filterViews.toast.viewNotSetAsDefault": string;
|
|
667
668
|
"filters.filterViews.toast.viewNotUnsetAsDefault": string;
|
|
668
669
|
"filters.filterViews.toast.viewNotApplied": string;
|
|
670
|
+
"parameter.toast.reset": string;
|
|
671
|
+
"parameter.toast.removed": string;
|
|
672
|
+
"parameter.toast.incompatible": string;
|
|
669
673
|
"filters.filterViews.list.ariaLabel.withActions": string;
|
|
670
674
|
"filters.filterViews.list.ariaLabel.noActions": string;
|
|
671
675
|
"filters.filterViews.add.title": string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fi-FI.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/fi-FI.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"fi-FI.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/fi-FI.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA22BjB,CAAC"}
|
|
@@ -26,6 +26,7 @@ export const fi_FI = {
|
|
|
26
26
|
"filterBar.showAll": "Näytä kaikki",
|
|
27
27
|
"filterBar.showLess": "Näytä vähemmän",
|
|
28
28
|
"filterBar.filterListAutoExpanded": "Suodatinluettelo on laajennettu automaattisesti",
|
|
29
|
+
"filterBar.filterListAutoCollapsed": "Suodatinluettelo on tiivistetty automaattisesti",
|
|
29
30
|
"filterBar.unappliedFiltersNotification": "<link>Käytä suodattimia</link> nähdäksesi päivitetyt tiedot.",
|
|
30
31
|
"filterBar.invalidFilterSelection": "Ota muutokset käyttöön valitsemalla kelvolliset arvot näille suodattimille: {names}",
|
|
31
32
|
"filterBar.applyFilters": "Käytä kaikkia suodattimia",
|
|
@@ -668,6 +669,9 @@ export const fi_FI = {
|
|
|
668
669
|
"filters.filterViews.toast.viewNotSetAsDefault": "Epäonnistui! Näkymääsi ei asetettu oletukseksi. Yritä uudelleen.",
|
|
669
670
|
"filters.filterViews.toast.viewNotUnsetAsDefault": "Epäonnistui! Näkymäsi on edelleen oletusarvoinen. Yritä uudelleen.",
|
|
670
671
|
"filters.filterViews.toast.viewNotApplied": "Epäonnistui! Näkymääsi ei käytetty. Yritä uudelleen.",
|
|
672
|
+
"parameter.toast.reset": "<b>Varoitus:</b> Parametri \"{name}\" on alueen ulkopuolella, joten oletusarvoa käytetään, kunnes asetat kelvollisen arvon.",
|
|
673
|
+
"parameter.toast.removed": "<b>Varoitus:</b> Parametri \"{name}\" poistettiin, koska sitä ei enää ole.",
|
|
674
|
+
"parameter.toast.incompatible": "<b>Varoitus:</b> Parametri \"{name}\" ei ole enää yhteensopiva, ja se on ohitettu.",
|
|
671
675
|
"filters.filterViews.list.ariaLabel.withActions": "Tallennettujen näkymien luettelo. Käytä oikeaa nuolinäppäintä siirtyäksesi ‘Aseta oletukseksi‘ -toimintoon ja sitten ‘poista‘ -toimintoon.",
|
|
672
676
|
"filters.filterViews.list.ariaLabel.noActions": "Tallennettujen näkymien luettelo",
|
|
673
677
|
"filters.filterViews.add.title": "Luo näkymä",
|
|
@@ -24,6 +24,7 @@ export declare const fr_CA: {
|
|
|
24
24
|
"filterBar.showAll": string;
|
|
25
25
|
"filterBar.showLess": string;
|
|
26
26
|
"filterBar.filterListAutoExpanded": string;
|
|
27
|
+
"filterBar.filterListAutoCollapsed": string;
|
|
27
28
|
"filterBar.unappliedFiltersNotification": string;
|
|
28
29
|
"filterBar.invalidFilterSelection": string;
|
|
29
30
|
"filterBar.applyFilters": string;
|
|
@@ -666,6 +667,9 @@ export declare const fr_CA: {
|
|
|
666
667
|
"filters.filterViews.toast.viewNotSetAsDefault": string;
|
|
667
668
|
"filters.filterViews.toast.viewNotUnsetAsDefault": string;
|
|
668
669
|
"filters.filterViews.toast.viewNotApplied": string;
|
|
670
|
+
"parameter.toast.reset": string;
|
|
671
|
+
"parameter.toast.removed": string;
|
|
672
|
+
"parameter.toast.incompatible": string;
|
|
669
673
|
"filters.filterViews.list.ariaLabel.withActions": string;
|
|
670
674
|
"filters.filterViews.list.ariaLabel.noActions": string;
|
|
671
675
|
"filters.filterViews.add.title": string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fr-CA.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/fr-CA.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"fr-CA.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/fr-CA.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA22BjB,CAAC"}
|
|
@@ -26,6 +26,7 @@ export const fr_CA = {
|
|
|
26
26
|
"filterBar.showAll": "Afficher tout",
|
|
27
27
|
"filterBar.showLess": "Montrer moins",
|
|
28
28
|
"filterBar.filterListAutoExpanded": "La liste de filtres a été automatiquement développée",
|
|
29
|
+
"filterBar.filterListAutoCollapsed": "La liste de filtres a été automatiquement réduite",
|
|
29
30
|
"filterBar.unappliedFiltersNotification": "<link>Appliquez les filtres</link> pour voir les données mises à jour.",
|
|
30
31
|
"filterBar.invalidFilterSelection": "Pour appliquer les modifications, sélectionnez des valeurs valides pour ces filtres: {names}",
|
|
31
32
|
"filterBar.applyFilters": "Appliquer tous les filtres",
|
|
@@ -668,6 +669,9 @@ export const fr_CA = {
|
|
|
668
669
|
"filters.filterViews.toast.viewNotSetAsDefault": "Échec ! Votre vue n’a pas été définie par défaut. Veuillez réessayer.",
|
|
669
670
|
"filters.filterViews.toast.viewNotUnsetAsDefault": "Échec ! Votre vue est toujours définie par défaut. Veuillez réessayer.",
|
|
670
671
|
"filters.filterViews.toast.viewNotApplied": "Échec ! Votre vue n’a pas été appliquée. Veuillez réessayer.",
|
|
672
|
+
"parameter.toast.reset": "<b>Avertissement :</b> Le paramètre \"{name}\" est hors plage; la valeur par défaut est donc appliquée jusqu’à ce que vous en définissiez une valide.",
|
|
673
|
+
"parameter.toast.removed": "<b>Avertissement :</b> Le paramètre \"{name}\" a été supprimé, car il n’existe plus.",
|
|
674
|
+
"parameter.toast.incompatible": "<b>Avertissement :</b> Le paramètre \"{name}\" n’est plus compatible et a été ignoré.",
|
|
671
675
|
"filters.filterViews.list.ariaLabel.withActions": "Liste des vues enregistrées. Utilisez la flèche droite pour passer à l'action \"Définir par défaut\", puis à l'action \"Supprimer\".",
|
|
672
676
|
"filters.filterViews.list.ariaLabel.noActions": "Liste des vues sauvegardées",
|
|
673
677
|
"filters.filterViews.add.title": "Créer une vue",
|
|
@@ -24,6 +24,7 @@ export declare const fr_FR: {
|
|
|
24
24
|
"filterBar.showAll": string;
|
|
25
25
|
"filterBar.showLess": string;
|
|
26
26
|
"filterBar.filterListAutoExpanded": string;
|
|
27
|
+
"filterBar.filterListAutoCollapsed": string;
|
|
27
28
|
"filterBar.unappliedFiltersNotification": string;
|
|
28
29
|
"filterBar.invalidFilterSelection": string;
|
|
29
30
|
"filterBar.applyFilters": string;
|
|
@@ -666,6 +667,9 @@ export declare const fr_FR: {
|
|
|
666
667
|
"filters.filterViews.toast.viewNotSetAsDefault": string;
|
|
667
668
|
"filters.filterViews.toast.viewNotUnsetAsDefault": string;
|
|
668
669
|
"filters.filterViews.toast.viewNotApplied": string;
|
|
670
|
+
"parameter.toast.reset": string;
|
|
671
|
+
"parameter.toast.removed": string;
|
|
672
|
+
"parameter.toast.incompatible": string;
|
|
669
673
|
"filters.filterViews.list.ariaLabel.withActions": string;
|
|
670
674
|
"filters.filterViews.list.ariaLabel.noActions": string;
|
|
671
675
|
"filters.filterViews.add.title": string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fr-FR.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/fr-FR.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"fr-FR.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/fr-FR.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA22BjB,CAAC"}
|
|
@@ -26,6 +26,7 @@ export const fr_FR = {
|
|
|
26
26
|
"filterBar.showAll": "Afficher tout",
|
|
27
27
|
"filterBar.showLess": "Montrer moins",
|
|
28
28
|
"filterBar.filterListAutoExpanded": "La liste de filtres a été automatiquement développée",
|
|
29
|
+
"filterBar.filterListAutoCollapsed": "La liste de filtres a été automatiquement réduite",
|
|
29
30
|
"filterBar.unappliedFiltersNotification": "<link>Appliquez les filtres</link> pour voir les données mises à jour.",
|
|
30
31
|
"filterBar.invalidFilterSelection": "Pour appliquer les modifications, sélectionnez des valeurs valides pour ces filtres: {names}",
|
|
31
32
|
"filterBar.applyFilters": "Appliquer tous les filtres",
|
|
@@ -668,6 +669,9 @@ export const fr_FR = {
|
|
|
668
669
|
"filters.filterViews.toast.viewNotSetAsDefault": "Échec ! Votre vue n'a pas été définie par défaut. Veuillez réessayer.",
|
|
669
670
|
"filters.filterViews.toast.viewNotUnsetAsDefault": "Échec ! Votre vue est toujours définie par défaut. Veuillez réessayer.",
|
|
670
671
|
"filters.filterViews.toast.viewNotApplied": "Échec ! Votre vue n'a pas été appliquée. Veuillez réessayer.",
|
|
672
|
+
"parameter.toast.reset": "<b>Avertissement :</b> Le paramètre \"{name}\" est hors plage ; la valeur par défaut est donc appliquée jusqu’à ce que vous définissiez une valeur valide.",
|
|
673
|
+
"parameter.toast.removed": "<b>Avertissement :</b> Le paramètre \"{name}\" a été supprimé car il n’existe plus.",
|
|
674
|
+
"parameter.toast.incompatible": "<b>Avertissement :</b> Le paramètre \"{name}\" n’est plus compatible et a été ignoré.",
|
|
671
675
|
"filters.filterViews.list.ariaLabel.withActions": "Liste des vues enregistrées. Utilisez la flèche droite pour passer à l'action \"Définir par défaut\", puis à l'action \"Supprimer\".",
|
|
672
676
|
"filters.filterViews.list.ariaLabel.noActions": "Liste des vues sauvegardées",
|
|
673
677
|
"filters.filterViews.add.title": "Créer une vue",
|