@gooddata/sdk-ui-catalog 11.36.0 → 11.37.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/esm/catalogDetail/CatalogDetailStatus.js +7 -1
  2. package/esm/localization/bundles/de-DE.localization-bundle.d.ts +2 -0
  3. package/esm/localization/bundles/de-DE.localization-bundle.js +2 -0
  4. package/esm/localization/bundles/en-AU.localization-bundle.d.ts +2 -0
  5. package/esm/localization/bundles/en-AU.localization-bundle.js +2 -0
  6. package/esm/localization/bundles/en-GB.localization-bundle.d.ts +2 -0
  7. package/esm/localization/bundles/en-GB.localization-bundle.js +2 -0
  8. package/esm/localization/bundles/en-US.localization-bundle.d.ts +8 -0
  9. package/esm/localization/bundles/en-US.localization-bundle.js +8 -0
  10. package/esm/localization/bundles/es-419.localization-bundle.d.ts +2 -0
  11. package/esm/localization/bundles/es-419.localization-bundle.js +2 -0
  12. package/esm/localization/bundles/es-ES.localization-bundle.d.ts +2 -0
  13. package/esm/localization/bundles/es-ES.localization-bundle.js +2 -0
  14. package/esm/localization/bundles/fi-FI.localization-bundle.d.ts +2 -0
  15. package/esm/localization/bundles/fi-FI.localization-bundle.js +2 -0
  16. package/esm/localization/bundles/fr-CA.localization-bundle.d.ts +2 -0
  17. package/esm/localization/bundles/fr-CA.localization-bundle.js +2 -0
  18. package/esm/localization/bundles/fr-FR.localization-bundle.d.ts +2 -0
  19. package/esm/localization/bundles/fr-FR.localization-bundle.js +2 -0
  20. package/esm/localization/bundles/id-ID.localization-bundle.d.ts +2 -0
  21. package/esm/localization/bundles/id-ID.localization-bundle.js +2 -0
  22. package/esm/localization/bundles/it-IT.localization-bundle.d.ts +2 -0
  23. package/esm/localization/bundles/it-IT.localization-bundle.js +2 -0
  24. package/esm/localization/bundles/ja-JP.localization-bundle.d.ts +2 -0
  25. package/esm/localization/bundles/ja-JP.localization-bundle.js +2 -0
  26. package/esm/localization/bundles/ko-KR.localization-bundle.d.ts +2 -0
  27. package/esm/localization/bundles/ko-KR.localization-bundle.js +2 -0
  28. package/esm/localization/bundles/nl-NL.localization-bundle.d.ts +2 -0
  29. package/esm/localization/bundles/nl-NL.localization-bundle.js +2 -0
  30. package/esm/localization/bundles/pl-PL.localization-bundle.d.ts +2 -0
  31. package/esm/localization/bundles/pl-PL.localization-bundle.js +2 -0
  32. package/esm/localization/bundles/pt-BR.localization-bundle.d.ts +2 -0
  33. package/esm/localization/bundles/pt-BR.localization-bundle.js +2 -0
  34. package/esm/localization/bundles/pt-PT.localization-bundle.d.ts +2 -0
  35. package/esm/localization/bundles/pt-PT.localization-bundle.js +2 -0
  36. package/esm/localization/bundles/ru-RU.localization-bundle.d.ts +2 -0
  37. package/esm/localization/bundles/ru-RU.localization-bundle.js +2 -0
  38. package/esm/localization/bundles/sl-SI.localization-bundle.d.ts +2 -0
  39. package/esm/localization/bundles/sl-SI.localization-bundle.js +2 -0
  40. package/esm/localization/bundles/th-TH.localization-bundle.d.ts +2 -0
  41. package/esm/localization/bundles/th-TH.localization-bundle.js +2 -0
  42. package/esm/localization/bundles/tr-TR.localization-bundle.d.ts +2 -0
  43. package/esm/localization/bundles/tr-TR.localization-bundle.js +2 -0
  44. package/esm/localization/bundles/uk-UA.localization-bundle.d.ts +2 -0
  45. package/esm/localization/bundles/uk-UA.localization-bundle.js +2 -0
  46. package/esm/localization/bundles/vi-VN.localization-bundle.d.ts +2 -0
  47. package/esm/localization/bundles/vi-VN.localization-bundle.js +2 -0
  48. package/esm/localization/bundles/zh-HK.localization-bundle.d.ts +2 -0
  49. package/esm/localization/bundles/zh-HK.localization-bundle.js +2 -0
  50. package/esm/localization/bundles/zh-Hans.localization-bundle.d.ts +2 -0
  51. package/esm/localization/bundles/zh-Hans.localization-bundle.js +2 -0
  52. package/esm/localization/bundles/zh-Hant.localization-bundle.d.ts +2 -0
  53. package/esm/localization/bundles/zh-Hant.localization-bundle.js +2 -0
  54. package/package.json +13 -13
@@ -1,12 +1,18 @@
1
1
  import { Fragment as _Fragment, jsx as _jsx } from "react/jsx-runtime";
2
2
  import { useIntl } from "react-intl";
3
- import { ErrorComponent, LoadingComponent } from "@gooddata/sdk-ui";
3
+ import { ErrorComponent, LoadingComponent, isNotFound, } from "@gooddata/sdk-ui";
4
+ import { UiErrorPage } from "@gooddata/sdk-ui-kit";
4
5
  export function CatalogDetailStatus({ status, error, children }) {
5
6
  const intl = useIntl();
6
7
  if (status === "loading" || status === "pending") {
7
8
  return (_jsx("div", { className: "gd-analytics-catalog-detail__loading", children: _jsx(LoadingComponent, {}) }));
8
9
  }
9
10
  if (status === "error") {
11
+ if (isNotFound(error)) {
12
+ return (_jsx("div", { className: "gd-analytics-catalog-detail__error", children: _jsx(UiErrorPage, { title: intl.formatMessage({ id: "analyticsCatalog.error.notFound.title" }), description: intl.formatMessage({
13
+ id: "analyticsCatalog.error.notFound.description",
14
+ }) }) }));
15
+ }
10
16
  return (_jsx("div", { className: "gd-analytics-catalog-detail__error", children: _jsx(ErrorComponent, { message: intl.formatMessage({ id: "analyticsCatalog.error.unknown.message" }), description: error?.message }) }));
11
17
  }
12
18
  return _jsx(_Fragment, { children: children });
@@ -89,6 +89,8 @@ export declare const de_DE: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const de_DE = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Entfernen",
92
92
  "analyticsCatalog.error.unknown.message": "Unbekannter Fehler",
93
93
  "analyticsCatalog.error.unknown.description": "Wir sind uns nicht ganz sicher, was hier schiefgelaufen ist. Bitte später erneut versuchen.",
94
+ "analyticsCatalog.error.notFound.title": "Wir können dieses Element nicht finden",
95
+ "analyticsCatalog.error.notFound.description": "Sie wurde möglicherweise gelöscht oder Sie haben keinen Zugriff.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Nicht autorisiert",
95
97
  "analyticsCatalog.error.unauthorized.description": "Sie haben leider keinen Zugriff auf den Analyse-Katalog. Bitten Sie Ihren Administrator, Ihnen die erforderlichen Berechtigungen zu erteilen.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Schließen",
@@ -89,6 +89,8 @@ export declare const en_AU: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const en_AU = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Remove",
92
92
  "analyticsCatalog.error.unknown.message": "Unknown error",
93
93
  "analyticsCatalog.error.unknown.description": "We’re not quite sure what went wrong. Please try again later.",
94
+ "analyticsCatalog.error.notFound.title": "We can’t find this item",
95
+ "analyticsCatalog.error.notFound.description": "It may have been deleted or you don't have access.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Unauthorised",
95
97
  "analyticsCatalog.error.unauthorized.description": "Sorry you don't have access to the analytics catalogue. Ask your administrator to grant you permissions.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Close",
@@ -89,6 +89,8 @@ export declare const en_GB: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const en_GB = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Remove",
92
92
  "analyticsCatalog.error.unknown.message": "Unknown error",
93
93
  "analyticsCatalog.error.unknown.description": "We’re not quite sure what went wrong. Please try again later.",
94
+ "analyticsCatalog.error.notFound.title": "We can’t find this item",
95
+ "analyticsCatalog.error.notFound.description": "It may have been deleted or you don't have access.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Unauthorised",
95
97
  "analyticsCatalog.error.unauthorized.description": "Sorry you don't have access to the analytics catalogue. Ask your administrator to grant you permissions.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Close",
@@ -359,6 +359,14 @@ export declare const en_US: {
359
359
  text: string;
360
360
  crowdinContext: string;
361
361
  };
362
+ "analyticsCatalog.error.notFound.title": {
363
+ text: string;
364
+ crowdinContext: string;
365
+ };
366
+ "analyticsCatalog.error.notFound.description": {
367
+ text: string;
368
+ crowdinContext: string;
369
+ };
362
370
  "analyticsCatalog.error.unauthorized.message": {
363
371
  text: string;
364
372
  crowdinContext: string;
@@ -361,6 +361,14 @@ export const en_US = {
361
361
  "text": "We’re not quite sure what went wrong. Please try again later.",
362
362
  "crowdinContext": "Instructions for users when encountering unknown errors"
363
363
  },
364
+ "analyticsCatalog.error.notFound.title": {
365
+ "text": "We can't find this item",
366
+ "crowdinContext": "Title shown when the requested catalog item cannot be found"
367
+ },
368
+ "analyticsCatalog.error.notFound.description": {
369
+ "text": "It may have been deleted or you don't have access.",
370
+ "crowdinContext": "Explanation shown when the requested catalog item cannot be found"
371
+ },
364
372
  "analyticsCatalog.error.unauthorized.message": {
365
373
  "text": "Unauthorized",
366
374
  "crowdinContext": "Error message shown when the user does not have permission to view the analytics catalog or its data."
@@ -89,6 +89,8 @@ export declare const es_419: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const es_419 = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Eliminar",
92
92
  "analyticsCatalog.error.unknown.message": "Error desconocido",
93
93
  "analyticsCatalog.error.unknown.description": "No estamos seguros de qué salió mal. Inténtelo más tarde.",
94
+ "analyticsCatalog.error.notFound.title": "No podemos encontrar este elemento",
95
+ "analyticsCatalog.error.notFound.description": "Es posible que se haya eliminado o que no tenga acceso.",
94
96
  "analyticsCatalog.error.unauthorized.message": "No autorizado",
95
97
  "analyticsCatalog.error.unauthorized.description": "No tiene acceso al catálogo de análisis. Pida a su administrador que le conceda permisos.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Cerrar",
@@ -89,6 +89,8 @@ export declare const es_ES: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const es_ES = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Quitar",
92
92
  "analyticsCatalog.error.unknown.message": "Error desconocido",
93
93
  "analyticsCatalog.error.unknown.description": "No estamos seguros de qué ha podido pasar. Inténtelo de nuevo más tarde.",
94
+ "analyticsCatalog.error.notFound.title": "No podemos encontrar este elemento",
95
+ "analyticsCatalog.error.notFound.description": "Es posible que se haya eliminado o que no tenga acceso.",
94
96
  "analyticsCatalog.error.unauthorized.message": "No autorizado",
95
97
  "analyticsCatalog.error.unauthorized.description": "No tiene acceso al catálogo de analítica. Solicite a su administrador que le conceda permisos.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Cerrar",
@@ -89,6 +89,8 @@ export declare const fi_FI: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const fi_FI = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Poista",
92
92
  "analyticsCatalog.error.unknown.message": "Tuntematon virhe",
93
93
  "analyticsCatalog.error.unknown.description": "Emme ole aivan varmoja, mikä meni pieleen. Yritä myöhemmin uudelleen.",
94
+ "analyticsCatalog.error.notFound.title": "Emme löydä tätä kohdetta",
95
+ "analyticsCatalog.error.notFound.description": "Se on voitu poistaa tai sinulla ei ole käyttöoikeutta siihen.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Luvaton",
95
97
  "analyticsCatalog.error.unauthorized.description": "Sinulla ei ole käyttöoikeutta analytiikkakatalogiin. Pyydä ylläpitäjääsi myöntämään sinulle käyttöoikeudet.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Sulje",
@@ -89,6 +89,8 @@ export declare const fr_CA: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const fr_CA = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Supprimer",
92
92
  "analyticsCatalog.error.unknown.message": "Erreur inconnue",
93
93
  "analyticsCatalog.error.unknown.description": "Nous ne savons pas trop ce qui s’est mal passé. Veuillez réessayer ultérieurement.",
94
+ "analyticsCatalog.error.notFound.title": "Nous ne trouvons pas cet élément",
95
+ "analyticsCatalog.error.notFound.description": "Elle a peut-être été supprimée ou vous n’avez pas accès.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Non autorisé",
95
97
  "analyticsCatalog.error.unauthorized.description": "Désolé, vous n’avez pas accès au catalogue d’analytique. Demandez à votre administrateur de vous accorder les autorisations.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Fermer",
@@ -89,6 +89,8 @@ export declare const fr_FR: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const fr_FR = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Supprimer",
92
92
  "analyticsCatalog.error.unknown.message": "Erreur inconnue",
93
93
  "analyticsCatalog.error.unknown.description": "Nous ne savons pas trop ce qui s'est mal passé. Veuillez réessayer ultérieurement.",
94
+ "analyticsCatalog.error.notFound.title": "Nous ne trouvons pas cet élément",
95
+ "analyticsCatalog.error.notFound.description": "Il a peut-être été supprimé ou vous n’y avez pas accès.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Non autorisé",
95
97
  "analyticsCatalog.error.unauthorized.description": "Désolé, vous n’avez pas accès au catalogue d’analyses. Demandez à votre administrateur de vous accorder les autorisations.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Fermer",
@@ -89,6 +89,8 @@ export declare const id_ID: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const id_ID = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Hapus",
92
92
  "analyticsCatalog.error.unknown.message": "Kesalahan tidak diketahui",
93
93
  "analyticsCatalog.error.unknown.description": "Kami tidak begitu yakin apa yang salah. Silakan coba lagi nanti.",
94
+ "analyticsCatalog.error.notFound.title": "Kami tidak dapat menemukan item ini",
95
+ "analyticsCatalog.error.notFound.description": "Mungkin telah dihapus atau Anda tidak memiliki akses.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Tidak diizinkan",
95
97
  "analyticsCatalog.error.unauthorized.description": "Maaf, Anda tidak memiliki akses ke katalog analitik. Minta administrator Anda untuk memberikan izin kepada Anda.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Tutup",
@@ -89,6 +89,8 @@ export declare const it_IT: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const it_IT = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Rimuovere",
92
92
  "analyticsCatalog.error.unknown.message": "Errore sconosciuto",
93
93
  "analyticsCatalog.error.unknown.description": "Riscontrato problema sconosciuto. Riprovare più tardi.",
94
+ "analyticsCatalog.error.notFound.title": "Non riusciamo a trovare questo elemento",
95
+ "analyticsCatalog.error.notFound.description": "Potrebbe essere stata eliminata o non si dispone dell'accesso.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Non autorizzato",
95
97
  "analyticsCatalog.error.unauthorized.description": "Non hai accesso al catalogo di analisi. Chiedi all'amministratore di concederti le autorizzazioni.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Chiudere",
@@ -89,6 +89,8 @@ export declare const ja_JP: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const ja_JP = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "削除",
92
92
  "analyticsCatalog.error.unknown.message": "未知のエラー",
93
93
  "analyticsCatalog.error.unknown.description": "何が原因で問題が発生したのかはっきりしません。後で再試行してください。",
94
+ "analyticsCatalog.error.notFound.title": "この項目が見つかりませんでした",
95
+ "analyticsCatalog.error.notFound.description": "削除されたか、アクセスできない可能性があります。",
94
96
  "analyticsCatalog.error.unauthorized.message": "権限がありません",
95
97
  "analyticsCatalog.error.unauthorized.description": "申し訳ありませんが、アナリティクスカタログへのアクセス権がありません。管理者に依頼して、必要な権限を付与してもらってください。",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "閉じる",
@@ -89,6 +89,8 @@ export declare const ko_KR: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const ko_KR = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "제거",
92
92
  "analyticsCatalog.error.unknown.message": "알 수 없는 오류",
93
93
  "analyticsCatalog.error.unknown.description": "문제가 발생했습니다. 나중에 다시 시도해 주세요.",
94
+ "analyticsCatalog.error.notFound.title": "이 항목을 찾을 수 없습니다",
95
+ "analyticsCatalog.error.notFound.description": "삭제되었거나 액세스 권한이 없을 수 있습니다.",
94
96
  "analyticsCatalog.error.unauthorized.message": "권한 없음",
95
97
  "analyticsCatalog.error.unauthorized.description": "애널리틱스 카탈로그에 대한 액세스 권한이 없습니다. 관리자에게 권한을 요청하세요.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "닫기",
@@ -89,6 +89,8 @@ export declare const nl_NL: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const nl_NL = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Verwijderen",
92
92
  "analyticsCatalog.error.unknown.message": "Onbekende fout",
93
93
  "analyticsCatalog.error.unknown.description": "We weten niet precies wat er misging. Probeer het later opnieuw.",
94
+ "analyticsCatalog.error.notFound.title": "We kunnen dit item niet vinden",
95
+ "analyticsCatalog.error.notFound.description": "Deze is mogelijk verwijderd of u hebt er geen toegang toe.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Niet-geauthoriseerd",
95
97
  "analyticsCatalog.error.unauthorized.description": "U hebt helaas geen toegang tot de analyticscatalogus. Vraag uw beheerder om u de vereiste machtigingen te geven.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Sluiten",
@@ -89,6 +89,8 @@ export declare const pl_PL: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const pl_PL = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Usuń",
92
92
  "analyticsCatalog.error.unknown.message": "Nieznany błąd",
93
93
  "analyticsCatalog.error.unknown.description": "Nie jesteśmy pewni, co poszło nie tak. Proszę spróbować ponownie później.",
94
+ "analyticsCatalog.error.notFound.title": "Nie możemy znaleźć tego elementu",
95
+ "analyticsCatalog.error.notFound.description": "Mogła zostać usunięta lub nie masz do niej dostępu.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Nieautoryzowany",
95
97
  "analyticsCatalog.error.unauthorized.description": "Przepraszamy, nie masz dostępu do katalogu analitycznego. Poproś administratora o nadanie uprawnień.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Zamknij",
@@ -89,6 +89,8 @@ export declare const pt_BR: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const pt_BR = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Remover",
92
92
  "analyticsCatalog.error.unknown.message": "Erro desconhecido",
93
93
  "analyticsCatalog.error.unknown.description": "Não entendemos o que houve de errado. Tente novamente mais tarde.",
94
+ "analyticsCatalog.error.notFound.title": "Não conseguimos encontrar este item",
95
+ "analyticsCatalog.error.notFound.description": "Ela pode ter sido excluída ou você não tem acesso.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Não autorizado",
95
97
  "analyticsCatalog.error.unauthorized.description": "Desculpe, você não tem acesso ao catálogo de análises. Peça ao seu administrador para conceder permissões.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Fechar",
@@ -89,6 +89,8 @@ export declare const pt_PT: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const pt_PT = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Remover",
92
92
  "analyticsCatalog.error.unknown.message": "Erro desconhecido",
93
93
  "analyticsCatalog.error.unknown.description": "Não sabemos o que aconteceu. Tente mais tarde.",
94
+ "analyticsCatalog.error.notFound.title": "Não conseguimos encontrar este item",
95
+ "analyticsCatalog.error.notFound.description": "Pode ter sido eliminada ou não tem acesso.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Não autorizado",
95
97
  "analyticsCatalog.error.unauthorized.description": "Lamentamos, mas não tem acesso ao catálogo de análises. Peça ao administrador para lhe conceder permissões.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Fechar",
@@ -89,6 +89,8 @@ export declare const ru_RU: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const ru_RU = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Удалить",
92
92
  "analyticsCatalog.error.unknown.message": "Неизвестная ошибка",
93
93
  "analyticsCatalog.error.unknown.description": "Мы не совсем уверены, что пошло не так. Повторите попытку позже.",
94
+ "analyticsCatalog.error.notFound.title": "Мы не можем найти этот элемент",
95
+ "analyticsCatalog.error.notFound.description": "Возможно, она была удалена, или у вас нет доступа.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Нет разрешения",
95
97
  "analyticsCatalog.error.unauthorized.description": "У вас нет доступа к каталогу аналитики. Обратитесь к администратору, чтобы он выдал вам права.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Закрыть",
@@ -89,6 +89,8 @@ export declare const sl_SI: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const sl_SI = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Odstrani",
92
92
  "analyticsCatalog.error.unknown.message": "Neznana napaka",
93
93
  "analyticsCatalog.error.unknown.description": "Nismo povsem prepričani, kaj je šlo narobe. Prosimo, poskusite znova kasneje.",
94
+ "analyticsCatalog.error.notFound.title": "Tega elementa ni mogoče najti",
95
+ "analyticsCatalog.error.notFound.description": "Morda je bila izbrisana ali pa nimate dostopa.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Nepooblaščen",
95
97
  "analyticsCatalog.error.unauthorized.description": "Oprostite, nimajo dostopa do kataloga analitike. Prosite svojega skrbnika za dodelitev dovoljenj.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Zapri",
@@ -89,6 +89,8 @@ export declare const th_TH: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const th_TH = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "นำออก",
92
92
  "analyticsCatalog.error.unknown.message": "ข้อผิดพลาดที่ไม่ทราบสาเหตุ",
93
93
  "analyticsCatalog.error.unknown.description": "เราไม่แน่ใจว่าเกิดข้อผิดพลาดอะไรขึ้น โปรดลองอีกครั้งในภายหลัง",
94
+ "analyticsCatalog.error.notFound.title": "เราไม่พบรายการนี้",
95
+ "analyticsCatalog.error.notFound.description": "อาจถูกลบไปแล้ว หรือคุณไม่มีสิทธิ์เข้าถึง",
94
96
  "analyticsCatalog.error.unauthorized.message": "ไม่ได้รับอนุญาต",
95
97
  "analyticsCatalog.error.unauthorized.description": "ขออภัย คุณไม่มีสิทธิ์เข้าถึงแค็ตตาล็อก Analytics โปรดขอให้ผู้ดูแลระบบมอบสิทธิ์ให้คุณ",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "ปิด",
@@ -89,6 +89,8 @@ export declare const tr_TR: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const tr_TR = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Kaldır",
92
92
  "analyticsCatalog.error.unknown.message": "Bilinmeyen hata",
93
93
  "analyticsCatalog.error.unknown.description": "Ne yazık ki neyin yanlış gittiğinden emin değiliz. Lütfen daha sonra tekrar deneyin.",
94
+ "analyticsCatalog.error.notFound.title": "Bu öğeyi bulamıyoruz",
95
+ "analyticsCatalog.error.notFound.description": "Silinmiş olabilir veya erişiminiz yok.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Yetkisiz",
95
97
  "analyticsCatalog.error.unauthorized.description": "Üzgünüz, analitik kataloğuna erişiminiz yok. Yöneticinizden size izin vermesini isteyin.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Kapat",
@@ -89,6 +89,8 @@ export declare const uk_UA: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const uk_UA = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Видалити",
92
92
  "analyticsCatalog.error.unknown.message": "Невідома помилка",
93
93
  "analyticsCatalog.error.unknown.description": "Ми не зовсім впевнені, що пішло не так. Спробуйте ще раз пізніше.",
94
+ "analyticsCatalog.error.notFound.title": "Не вдається знайти цей елемент",
95
+ "analyticsCatalog.error.notFound.description": "Можливо, її було видалено або у вас немає доступу.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Немає авторизації",
95
97
  "analyticsCatalog.error.unauthorized.description": "На жаль, у вас немає доступу до каталогу аналітики. Попросіть адміністратора надати вам дозволи.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Закрити",
@@ -89,6 +89,8 @@ export declare const vi_VN: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const vi_VN = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "Xóa",
92
92
  "analyticsCatalog.error.unknown.message": "Lỗi không xác định",
93
93
  "analyticsCatalog.error.unknown.description": "Chúng tôi chưa thể xác định điều gì đã xảy ra. Vui lòng thử lại sau.",
94
+ "analyticsCatalog.error.notFound.title": "Chúng tôi không thể tìm thấy mục này",
95
+ "analyticsCatalog.error.notFound.description": "Nó có thể đã bị xóa hoặc bạn không có quyền truy cập.",
94
96
  "analyticsCatalog.error.unauthorized.message": "Không được phép",
95
97
  "analyticsCatalog.error.unauthorized.description": "Rất tiếc, bạn không có quyền truy cập vào danh mục phân tích. Hãy yêu cầu quản trị viên cấp quyền cho bạn.",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "Đóng",
@@ -89,6 +89,8 @@ export declare const zh_HK: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const zh_HK = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "刪除",
92
92
  "analyticsCatalog.error.unknown.message": "未知錯誤",
93
93
  "analyticsCatalog.error.unknown.description": "我哋不太肯定出咗乜嘢問題。 請稍後再試。",
94
+ "analyticsCatalog.error.notFound.title": "我們找不到此項目",
95
+ "analyticsCatalog.error.notFound.description": "它可能已被刪除,或者您沒有存取權限。",
94
96
  "analyticsCatalog.error.unauthorized.message": "未經授權",
95
97
  "analyticsCatalog.error.unauthorized.description": "抱歉,您無權存取分析目錄。請聯絡系統管理員為您授予權限。",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "關閉",
@@ -89,6 +89,8 @@ export declare const zh_Hans: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const zh_Hans = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "删除",
92
92
  "analyticsCatalog.error.unknown.message": "未知错误",
93
93
  "analyticsCatalog.error.unknown.description": "我们不太确定出了什么问题。请稍后重试。",
94
+ "analyticsCatalog.error.notFound.title": "我们找不到此项",
95
+ "analyticsCatalog.error.notFound.description": "它可能已被删除,或者您没有访问权限。",
94
96
  "analyticsCatalog.error.unauthorized.message": "未授权",
95
97
  "analyticsCatalog.error.unauthorized.description": "抱歉,您无法访问分析目录。请联系管理员为您授予权限。",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "关闭",
@@ -89,6 +89,8 @@ export declare const zh_Hant: {
89
89
  "analyticsCatalog.tags.manager.label.removeLabel": string;
90
90
  "analyticsCatalog.error.unknown.message": string;
91
91
  "analyticsCatalog.error.unknown.description": string;
92
+ "analyticsCatalog.error.notFound.title": string;
93
+ "analyticsCatalog.error.notFound.description": string;
92
94
  "analyticsCatalog.error.unauthorized.message": string;
93
95
  "analyticsCatalog.error.unauthorized.description": string;
94
96
  "analyticsCatalog.catalogItem.closeButtonLabel": string;
@@ -91,6 +91,8 @@ export const zh_Hant = {
91
91
  "analyticsCatalog.tags.manager.label.removeLabel": "消除",
92
92
  "analyticsCatalog.error.unknown.message": "未知錯誤",
93
93
  "analyticsCatalog.error.unknown.description": "我們不太確定出了什麼問題。請稍後再試。",
94
+ "analyticsCatalog.error.notFound.title": "我們找不到此項目",
95
+ "analyticsCatalog.error.notFound.description": "它可能已被刪除,或您沒有存取權限。",
94
96
  "analyticsCatalog.error.unauthorized.message": "未經授權",
95
97
  "analyticsCatalog.error.unauthorized.description": "抱歉,您無權存取分析目錄。請要求系統管理員授予您權限。",
96
98
  "analyticsCatalog.catalogItem.closeButtonLabel": "關閉",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-ui-catalog",
3
- "version": "11.36.0",
3
+ "version": "11.37.0-alpha.1",
4
4
  "description": "GoodData SDK - Analytics Catalog",
5
5
  "license": "MIT",
6
6
  "author": "GoodData Corporation",
@@ -45,13 +45,13 @@
45
45
  "tslib": "2.8.1",
46
46
  "yaml": "2.8.3",
47
47
  "zod": "4.3.6",
48
- "@gooddata/sdk-backend-spi": "11.36.0",
49
- "@gooddata/sdk-model": "11.36.0",
50
- "@gooddata/sdk-ui": "11.36.0",
51
- "@gooddata/sdk-ui-semantic-search": "11.36.0",
52
- "@gooddata/sdk-ui-kit": "11.36.0",
53
- "@gooddata/sdk-ui-theme-provider": "11.36.0",
54
- "@gooddata/util": "11.36.0"
48
+ "@gooddata/sdk-backend-spi": "11.37.0-alpha.1",
49
+ "@gooddata/sdk-model": "11.37.0-alpha.1",
50
+ "@gooddata/sdk-ui": "11.37.0-alpha.1",
51
+ "@gooddata/sdk-ui-kit": "11.37.0-alpha.1",
52
+ "@gooddata/sdk-ui-semantic-search": "11.37.0-alpha.1",
53
+ "@gooddata/sdk-ui-theme-provider": "11.37.0-alpha.1",
54
+ "@gooddata/util": "11.37.0-alpha.1"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@microsoft/api-documenter": "^7.17.0",
@@ -91,11 +91,11 @@
91
91
  "typescript": "5.9.3",
92
92
  "vitest": "4.1.0",
93
93
  "vitest-dom": "0.1.1",
94
- "@gooddata/eslint-config": "11.36.0",
95
- "@gooddata/i18n-toolkit": "11.36.0",
96
- "@gooddata/oxlint-config": "11.36.0",
97
- "@gooddata/stylelint-config": "11.36.0",
98
- "@gooddata/sdk-backend-mockingbird": "11.36.0"
94
+ "@gooddata/eslint-config": "11.37.0-alpha.1",
95
+ "@gooddata/sdk-backend-mockingbird": "11.37.0-alpha.1",
96
+ "@gooddata/i18n-toolkit": "11.37.0-alpha.1",
97
+ "@gooddata/oxlint-config": "11.37.0-alpha.1",
98
+ "@gooddata/stylelint-config": "11.37.0-alpha.1"
99
99
  },
100
100
  "peerDependencies": {
101
101
  "react": "^18.0.0 || ^19.0.0",