@gooddata/sdk-ui 10.38.0 → 10.39.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.
Files changed (37) hide show
  1. package/esm/base/index.d.ts +5 -1
  2. package/esm/base/index.d.ts.map +1 -1
  3. package/esm/base/index.js +4 -1
  4. package/esm/base/index.js.map +1 -1
  5. package/esm/base/localization/bundles/en-US.json +50 -6
  6. package/esm/base/localization/bundles/en-US.localization-bundle.d.ts +13 -2
  7. package/esm/base/localization/bundles/en-US.localization-bundle.d.ts.map +1 -1
  8. package/esm/base/localization/bundles/en-US.localization-bundle.js +14 -3
  9. package/esm/base/localization/bundles/en-US.localization-bundle.js.map +1 -1
  10. package/esm/base/react/contextStore.d.ts.map +1 -1
  11. package/esm/base/react/contextStore.js +2 -1
  12. package/esm/base/react/contextStore.js.map +1 -1
  13. package/esm/base/react/legacy/withEntireDataView.d.ts +1 -1
  14. package/esm/base/react/legacy/withEntireDataView.d.ts.map +1 -1
  15. package/esm/base/react/legacy/withEntireDataView.js.map +1 -1
  16. package/esm/base/react/validation/ValidationContextStore.d.ts +10 -0
  17. package/esm/base/react/validation/ValidationContextStore.d.ts.map +1 -0
  18. package/esm/base/react/validation/ValidationContextStore.js +69 -0
  19. package/esm/base/react/validation/ValidationContextStore.js.map +1 -0
  20. package/esm/base/react/validation/types.d.ts +51 -0
  21. package/esm/base/react/validation/types.d.ts.map +1 -0
  22. package/esm/base/react/validation/types.js +2 -0
  23. package/esm/base/react/validation/types.js.map +1 -0
  24. package/esm/base/react/validation/utils.d.ts +44 -0
  25. package/esm/base/react/validation/utils.d.ts.map +1 -0
  26. package/esm/base/react/validation/utils.js +74 -0
  27. package/esm/base/react/validation/utils.js.map +1 -0
  28. package/esm/base/results/tableData/interfaces/columns.d.ts +30 -0
  29. package/esm/base/results/tableData/interfaces/columns.d.ts.map +1 -1
  30. package/esm/base/results/tableData/interfaces/columns.js +33 -0
  31. package/esm/base/results/tableData/interfaces/columns.js.map +1 -1
  32. package/esm/base/results/tableData/interfaces/rows.d.ts +24 -0
  33. package/esm/base/results/tableData/interfaces/rows.d.ts.map +1 -1
  34. package/esm/base/results/tableData/interfaces/rows.js +30 -1
  35. package/esm/base/results/tableData/interfaces/rows.js.map +1 -1
  36. package/esm/sdk-ui.d.ts +175 -1
  37. package/package.json +8 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-ui",
3
- "version": "10.38.0",
3
+ "version": "10.39.0-alpha.2",
4
4
  "description": "GoodData.UI SDK - Core",
5
5
  "repository": {
6
6
  "type": "git",
@@ -43,9 +43,9 @@
43
43
  "tslib": "2.8.1",
44
44
  "uuid": "^8.3.2",
45
45
  "react-fast-compare": "^3.2.0",
46
- "@gooddata/sdk-backend-spi": "10.38.0",
47
- "@gooddata/sdk-model": "10.38.0",
48
- "@gooddata/util": "10.38.0"
46
+ "@gooddata/sdk-backend-spi": "10.39.0-alpha.2",
47
+ "@gooddata/util": "10.39.0-alpha.2",
48
+ "@gooddata/sdk-model": "10.39.0-alpha.2"
49
49
  },
50
50
  "peerDependencies": {
51
51
  "react": "^16.10.0 || ^17.0.0 || ^18.0.0",
@@ -95,10 +95,10 @@
95
95
  "typescript": "5.8.3",
96
96
  "vitest": "3.2.4",
97
97
  "vitest-dom": "0.1.1",
98
- "@gooddata/reference-workspace": "10.38.0",
99
- "@gooddata/i18n-toolkit": "10.38.0",
100
- "@gooddata/sdk-backend-mockingbird": "10.38.0",
101
- "@gooddata/sdk-backend-base": "10.38.0"
98
+ "@gooddata/reference-workspace": "10.39.0-alpha.2",
99
+ "@gooddata/i18n-toolkit": "10.39.0-alpha.2",
100
+ "@gooddata/sdk-backend-mockingbird": "10.39.0-alpha.2",
101
+ "@gooddata/sdk-backend-base": "10.39.0-alpha.2"
102
102
  },
103
103
  "scripts": {
104
104
  "clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",