@gooddata/sdk-ui-pluggable-host 11.42.0-alpha.3 → 11.42.0-alpha.5

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 (43) hide show
  1. package/esm/components/HostUiContainer.d.ts.map +1 -1
  2. package/esm/components/HostUiContainer.js +15 -3
  3. package/esm/translations/de-DE.json +0 -13
  4. package/esm/translations/en-AU.json +0 -13
  5. package/esm/translations/en-GB.json +0 -13
  6. package/esm/translations/en-US.json +0 -52
  7. package/esm/translations/es-419.json +0 -13
  8. package/esm/translations/es-ES.json +0 -13
  9. package/esm/translations/fi-FI.json +0 -13
  10. package/esm/translations/fr-CA.json +0 -13
  11. package/esm/translations/fr-FR.json +0 -13
  12. package/esm/translations/id-ID.json +0 -13
  13. package/esm/translations/it-IT.json +0 -13
  14. package/esm/translations/ja-JP.json +0 -13
  15. package/esm/translations/ko-KR.json +0 -13
  16. package/esm/translations/nl-NL.json +0 -13
  17. package/esm/translations/pl-PL.json +0 -13
  18. package/esm/translations/pt-BR.json +0 -13
  19. package/esm/translations/pt-PT.json +0 -13
  20. package/esm/translations/ru-RU.json +0 -13
  21. package/esm/translations/sl-SI.json +0 -13
  22. package/esm/translations/th-TH.json +0 -13
  23. package/esm/translations/tr-TR.json +0 -13
  24. package/esm/translations/uk-UA.json +0 -13
  25. package/esm/translations/vi-VN.json +0 -13
  26. package/esm/translations/zh-HK.json +0 -13
  27. package/esm/translations/zh-Hans.json +0 -13
  28. package/esm/translations/zh-Hant.json +0 -13
  29. package/esm/ui/DefaultHostUi.d.ts.map +1 -1
  30. package/esm/ui/DefaultHostUi.js +42 -6
  31. package/esm/ui/GenAIChat.d.ts +21 -1
  32. package/esm/ui/GenAIChat.d.ts.map +1 -1
  33. package/esm/ui/GenAIChat.js +9 -4
  34. package/esm/ui/HostChrome.d.ts +25 -2
  35. package/esm/ui/HostChrome.d.ts.map +1 -1
  36. package/esm/ui/HostChrome.js +60 -9
  37. package/esm/ui/PluggableApplicationRenderer.d.ts +3 -1
  38. package/esm/ui/PluggableApplicationRenderer.d.ts.map +1 -1
  39. package/esm/ui/PluggableApplicationRenderer.js +34 -2
  40. package/esm/ui/useHostChromeChat.d.ts +17 -2
  41. package/esm/ui/useHostChromeChat.d.ts.map +1 -1
  42. package/esm/ui/useHostChromeChat.js +25 -2
  43. package/package.json +17 -17
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-ui-pluggable-host",
3
- "version": "11.42.0-alpha.3",
3
+ "version": "11.42.0-alpha.5",
4
4
  "description": "GoodData SDK runtime for hosting pluggable applications — registry, loader, routing, platform context, default UI chrome",
5
5
  "license": "MIT",
6
6
  "author": "GoodData Corporation",
@@ -29,20 +29,20 @@
29
29
  "dependencies": {
30
30
  "@module-federation/runtime": "2.3.1",
31
31
  "lodash-es": "^4.17.23",
32
- "@gooddata/sdk-backend-base": "11.42.0-alpha.3",
33
- "@gooddata/sdk-backend-spi": "11.42.0-alpha.3",
34
- "@gooddata/sdk-embedding": "11.42.0-alpha.3",
35
- "@gooddata/sdk-backend-tiger": "11.42.0-alpha.3",
36
- "@gooddata/sdk-model": "11.42.0-alpha.3",
37
- "@gooddata/sdk-pluggable-application-model": "11.42.0-alpha.3",
38
- "@gooddata/sdk-ui": "11.42.0-alpha.3",
39
- "@gooddata/sdk-ui-application-header": "11.42.0-alpha.3",
40
- "@gooddata/sdk-ui-ext": "11.42.0-alpha.3",
41
- "@gooddata/sdk-ui-gen-ai": "11.42.0-alpha.3",
42
- "@gooddata/sdk-ui-kit": "11.42.0-alpha.3",
43
- "@gooddata/sdk-ui-semantic-search": "11.42.0-alpha.3",
44
- "@gooddata/sdk-ui-theme-provider": "11.42.0-alpha.3",
45
- "@gooddata/util": "11.42.0-alpha.3"
32
+ "@gooddata/sdk-backend-base": "11.42.0-alpha.5",
33
+ "@gooddata/sdk-backend-spi": "11.42.0-alpha.5",
34
+ "@gooddata/sdk-backend-tiger": "11.42.0-alpha.5",
35
+ "@gooddata/sdk-embedding": "11.42.0-alpha.5",
36
+ "@gooddata/sdk-model": "11.42.0-alpha.5",
37
+ "@gooddata/sdk-ui": "11.42.0-alpha.5",
38
+ "@gooddata/sdk-ui-application-header": "11.42.0-alpha.5",
39
+ "@gooddata/sdk-pluggable-application-model": "11.42.0-alpha.5",
40
+ "@gooddata/sdk-ui-ext": "11.42.0-alpha.5",
41
+ "@gooddata/sdk-ui-gen-ai": "11.42.0-alpha.5",
42
+ "@gooddata/sdk-ui-kit": "11.42.0-alpha.5",
43
+ "@gooddata/sdk-ui-semantic-search": "11.42.0-alpha.5",
44
+ "@gooddata/sdk-ui-theme-provider": "11.42.0-alpha.5",
45
+ "@gooddata/util": "11.42.0-alpha.5"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@microsoft/api-documenter": "^7.17.0",
@@ -85,8 +85,8 @@
85
85
  "vite": "8.0.16",
86
86
  "vitest": "4.1.8",
87
87
  "vitest-dom": "0.1.1",
88
- "@gooddata/eslint-config": "11.42.0-alpha.3",
89
- "@gooddata/oxlint-config": "11.42.0-alpha.3"
88
+ "@gooddata/eslint-config": "11.42.0-alpha.5",
89
+ "@gooddata/oxlint-config": "11.42.0-alpha.5"
90
90
  },
91
91
  "peerDependencies": {
92
92
  "react": ">=18.3.1",