@gooddata/sdk-ui-charts 10.40.0-alpha.8 → 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-charts",
|
3
|
-
"version": "10.
|
3
|
+
"version": "10.41.0-alpha.1",
|
4
4
|
"description": "GoodData.UI SDK - Charts",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -67,13 +67,13 @@
|
|
67
67
|
"ts-invariant": "^0.7.5",
|
68
68
|
"tslib": "2.8.1",
|
69
69
|
"uuid": "^11.1.0",
|
70
|
-
"@gooddata/sdk-backend-spi": "10.
|
71
|
-
"@gooddata/sdk-
|
72
|
-
"@gooddata/sdk-ui": "10.
|
73
|
-
"@gooddata/sdk-ui-
|
74
|
-
"@gooddata/sdk-
|
75
|
-
"@gooddata/sdk-ui-vis-commons": "10.
|
76
|
-
"@gooddata/util": "10.
|
70
|
+
"@gooddata/sdk-backend-spi": "10.41.0-alpha.1",
|
71
|
+
"@gooddata/sdk-ui": "10.41.0-alpha.1",
|
72
|
+
"@gooddata/sdk-ui-kit": "10.41.0-alpha.1",
|
73
|
+
"@gooddata/sdk-ui-theme-provider": "10.41.0-alpha.1",
|
74
|
+
"@gooddata/sdk-model": "10.41.0-alpha.1",
|
75
|
+
"@gooddata/sdk-ui-vis-commons": "10.41.0-alpha.1",
|
76
|
+
"@gooddata/util": "10.41.0-alpha.1"
|
77
77
|
},
|
78
78
|
"peerDependencies": {
|
79
79
|
"react": "^16.10.0 || ^17.0.0 || ^18.0.0",
|
@@ -124,10 +124,13 @@
|
|
124
124
|
"vitest": "3.2.4",
|
125
125
|
"vitest-dom": "0.1.1",
|
126
126
|
"@types/js-yaml": "^4.0.9",
|
127
|
-
"@gooddata/
|
128
|
-
"@gooddata/
|
127
|
+
"@gooddata/reference-workspace": "10.41.0-alpha.1",
|
128
|
+
"@gooddata/sdk-backend-mockingbird": "10.41.0-alpha.1"
|
129
129
|
},
|
130
130
|
"scripts": {
|
131
|
+
"_phase:build": "npm run build",
|
132
|
+
"_phase:test": "npm run test-once",
|
133
|
+
"_phase:validate": "npm run validate",
|
131
134
|
"clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage styles/css *.log tsconfig.tsbuildinfo",
|
132
135
|
"api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l) || (api-extractor run)",
|
133
136
|
"build": "bash scripts/build.sh",
|
@@ -143,10 +146,8 @@
|
|
143
146
|
"dep-cruiser-ci": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
|
144
147
|
"stylelint": "stylelint '**/*.scss'",
|
145
148
|
"stylelint-ci": "stylelint '**/*.scss' --custom-formatter=node_modules/stylelint-checkstyle-formatter > ./ci/results/stylelint-results.xml",
|
146
|
-
"validate": "tsc && npm run dep-cruiser && npm run eslint && npm run stylelint && npm run validate-locales && npm run prettier-check && npm run validate-theming",
|
147
|
-
"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",
|
149
|
+
"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",
|
148
150
|
"validate-locales": "cd ../sdk-ui && npm run validate-locales",
|
149
|
-
"validate-locales-ci": "cd ../sdk-ui && npm run validate-locales-ci",
|
150
151
|
"validate-theming": "npm run scss && node scripts/validateCss.js",
|
151
152
|
"scss": "sass --load-path=node_modules styles/scss:styles/css",
|
152
153
|
"validate-esm": "node --input-type=module --eval 'import \"@gooddata/sdk-ui-charts\"'"
|