@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.
- package/esm/base/index.d.ts +5 -1
- package/esm/base/index.d.ts.map +1 -1
- package/esm/base/index.js +4 -1
- package/esm/base/index.js.map +1 -1
- package/esm/base/localization/bundles/en-US.json +50 -6
- package/esm/base/localization/bundles/en-US.localization-bundle.d.ts +13 -2
- package/esm/base/localization/bundles/en-US.localization-bundle.d.ts.map +1 -1
- package/esm/base/localization/bundles/en-US.localization-bundle.js +14 -3
- package/esm/base/localization/bundles/en-US.localization-bundle.js.map +1 -1
- package/esm/base/react/contextStore.d.ts.map +1 -1
- package/esm/base/react/contextStore.js +2 -1
- package/esm/base/react/contextStore.js.map +1 -1
- package/esm/base/react/legacy/withEntireDataView.d.ts +1 -1
- package/esm/base/react/legacy/withEntireDataView.d.ts.map +1 -1
- package/esm/base/react/legacy/withEntireDataView.js.map +1 -1
- package/esm/base/react/validation/ValidationContextStore.d.ts +10 -0
- package/esm/base/react/validation/ValidationContextStore.d.ts.map +1 -0
- package/esm/base/react/validation/ValidationContextStore.js +69 -0
- package/esm/base/react/validation/ValidationContextStore.js.map +1 -0
- package/esm/base/react/validation/types.d.ts +51 -0
- package/esm/base/react/validation/types.d.ts.map +1 -0
- package/esm/base/react/validation/types.js +2 -0
- package/esm/base/react/validation/types.js.map +1 -0
- package/esm/base/react/validation/utils.d.ts +44 -0
- package/esm/base/react/validation/utils.d.ts.map +1 -0
- package/esm/base/react/validation/utils.js +74 -0
- package/esm/base/react/validation/utils.js.map +1 -0
- package/esm/base/results/tableData/interfaces/columns.d.ts +30 -0
- package/esm/base/results/tableData/interfaces/columns.d.ts.map +1 -1
- package/esm/base/results/tableData/interfaces/columns.js +33 -0
- package/esm/base/results/tableData/interfaces/columns.js.map +1 -1
- package/esm/base/results/tableData/interfaces/rows.d.ts +24 -0
- package/esm/base/results/tableData/interfaces/rows.d.ts.map +1 -1
- package/esm/base/results/tableData/interfaces/rows.js +30 -1
- package/esm/base/results/tableData/interfaces/rows.js.map +1 -1
- package/esm/sdk-ui.d.ts +175 -1
- package/package.json +8 -8
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gooddata/sdk-ui",
|
3
|
-
"version": "10.
|
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.
|
47
|
-
"@gooddata/
|
48
|
-
"@gooddata/
|
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.
|
99
|
-
"@gooddata/i18n-toolkit": "10.
|
100
|
-
"@gooddata/sdk-backend-mockingbird": "10.
|
101
|
-
"@gooddata/sdk-backend-base": "10.
|
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",
|