@gooddata/sdk-ui-pivot 10.40.0 → 10.41.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.
- package/package.json +14 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-pivot",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.41.0-alpha.1",
|
|
4
4
|
"description": "GoodData.UI SDK - Pivot Table",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"ts-invariant": "^0.7.5",
|
|
44
44
|
"tslib": "2.8.1",
|
|
45
45
|
"uuid": "^11.1.0",
|
|
46
|
-
"@gooddata/sdk-backend-spi": "10.
|
|
47
|
-
"@gooddata/sdk-ui": "10.
|
|
48
|
-
"@gooddata/sdk-ui-kit": "10.
|
|
49
|
-
"@gooddata/sdk-ui-
|
|
50
|
-
"@gooddata/sdk-
|
|
51
|
-
"@gooddata/sdk-
|
|
46
|
+
"@gooddata/sdk-backend-spi": "10.41.0-alpha.1",
|
|
47
|
+
"@gooddata/sdk-ui": "10.41.0-alpha.1",
|
|
48
|
+
"@gooddata/sdk-ui-kit": "10.41.0-alpha.1",
|
|
49
|
+
"@gooddata/sdk-ui-vis-commons": "10.41.0-alpha.1",
|
|
50
|
+
"@gooddata/sdk-ui-theme-provider": "10.41.0-alpha.1",
|
|
51
|
+
"@gooddata/sdk-model": "10.41.0-alpha.1"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"react": "^16.10.0 || ^17.0.0 || ^18.0.0",
|
|
@@ -96,11 +96,14 @@
|
|
|
96
96
|
"typescript": "5.8.3",
|
|
97
97
|
"vitest": "3.2.4",
|
|
98
98
|
"vitest-dom": "0.1.1",
|
|
99
|
-
"@gooddata/
|
|
100
|
-
"@gooddata/sdk-backend-
|
|
101
|
-
"@gooddata/
|
|
99
|
+
"@gooddata/sdk-backend-base": "10.41.0-alpha.1",
|
|
100
|
+
"@gooddata/sdk-backend-mockingbird": "10.41.0-alpha.1",
|
|
101
|
+
"@gooddata/reference-workspace": "10.41.0-alpha.1"
|
|
102
102
|
},
|
|
103
103
|
"scripts": {
|
|
104
|
+
"_phase:build": "npm run build",
|
|
105
|
+
"_phase:test": "npm run test-once",
|
|
106
|
+
"_phase:validate": "npm run validate",
|
|
104
107
|
"clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log styles/css tsconfig.tsbuildinfo",
|
|
105
108
|
"api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l) || (api-extractor run)",
|
|
106
109
|
"build": "bash scripts/build.sh",
|
|
@@ -116,10 +119,8 @@
|
|
|
116
119
|
"dep-cruiser-ci": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
|
|
117
120
|
"stylelint": "stylelint '**/*.scss'",
|
|
118
121
|
"stylelint-ci": "stylelint '**/*.scss' --custom-formatter=node_modules/stylelint-checkstyle-formatter > ./ci/results/stylelint-results.xml",
|
|
119
|
-
"validate": "tsc && npm run dep-cruiser && npm run eslint && npm run stylelint && npm run validate-locales && npm run prettier-check && npm run validate-theming",
|
|
120
|
-
"validate-ci": "tsc && export BROWSERSLIST_IGNORE_OLD_DATA=true && npm run dep-cruiser-ci && npm run eslint-ci && npm run stylelint-ci && npm run validate-locales-ci && npm run prettier-check && npm run validate-theming",
|
|
122
|
+
"validate": "tsc && export BROWSERSLIST_IGNORE_OLD_DATA=true && npm run dep-cruiser && npm run eslint && npm run stylelint && npm run validate-locales && npm run prettier-check && npm run validate-theming",
|
|
121
123
|
"validate-locales": "cd ../sdk-ui && npm run validate-locales",
|
|
122
|
-
"validate-locales-ci": "cd ../sdk-ui && npm run validate-locales-ci",
|
|
123
124
|
"validate-theming": "npm run scss && node scripts/validateCss.js",
|
|
124
125
|
"scss": "sass --quiet-deps --load-path=node_modules --load-path=node_modules/fixed-data-table-2/dist styles/scss:styles/css",
|
|
125
126
|
"validate-esm": "node --input-type=module --eval 'import \"@gooddata/sdk-ui-pivot\"'"
|