@gooddata/sdk-ui-all 11.19.0-alpha.9 → 11.20.0-alpha.0

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 (3) hide show
  1. package/NOTICE +1841 -1701
  2. package/esm/index.js +1 -1
  3. package/package.json +19 -13
package/esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // (C) 2019-2026 GoodData Corporation
2
- /* eslint-disable no-barrel-files/no-barrel-files */
2
+ /* oxlint-disable no-barrel-files/no-barrel-files */
3
3
  /**
4
4
  * This is an all-in-one package that has all GoodData.UI packages as dependencies and re-exports their public API.
5
5
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-ui-all",
3
- "version": "11.19.0-alpha.9",
3
+ "version": "11.20.0-alpha.0",
4
4
  "description": "GoodData SDK - All-In-One",
5
5
  "license": "LicenseRef-LICENSE",
6
6
  "author": "GoodData",
@@ -24,14 +24,14 @@
24
24
  "exports": "./esm/index.js",
25
25
  "dependencies": {
26
26
  "tslib": "2.8.1",
27
- "@gooddata/sdk-backend-spi": "11.19.0-alpha.9",
28
- "@gooddata/sdk-model": "11.19.0-alpha.9",
29
- "@gooddata/sdk-ui": "11.19.0-alpha.9",
30
- "@gooddata/sdk-ui-charts": "11.19.0-alpha.9",
31
- "@gooddata/sdk-ui-ext": "11.19.0-alpha.9",
32
- "@gooddata/sdk-ui-filters": "11.19.0-alpha.9",
33
- "@gooddata/sdk-ui-geo": "11.19.0-alpha.9",
34
- "@gooddata/sdk-ui-pivot": "11.19.0-alpha.9"
27
+ "@gooddata/sdk-backend-spi": "11.20.0-alpha.0",
28
+ "@gooddata/sdk-model": "11.20.0-alpha.0",
29
+ "@gooddata/sdk-ui": "11.20.0-alpha.0",
30
+ "@gooddata/sdk-ui-ext": "11.20.0-alpha.0",
31
+ "@gooddata/sdk-ui-charts": "11.20.0-alpha.0",
32
+ "@gooddata/sdk-ui-filters": "11.20.0-alpha.0",
33
+ "@gooddata/sdk-ui-geo": "11.20.0-alpha.0",
34
+ "@gooddata/sdk-ui-pivot": "11.20.0-alpha.0"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@microsoft/api-documenter": "^7.17.0",
@@ -42,17 +42,19 @@
42
42
  "dependency-cruiser": "^14.1.2",
43
43
  "eslint": "^9.39.2",
44
44
  "eslint-import-resolver-typescript": "4.4.4",
45
- "eslint-plugin-header": "3.1.1",
45
+ "eslint-plugin-headers": "1.3.3",
46
46
  "eslint-plugin-import-esm": "1.2.1",
47
47
  "eslint-plugin-import-x": "4.16.1",
48
48
  "eslint-plugin-jsdoc": "62.1.0",
49
49
  "eslint-plugin-no-barrel-files": "1.2.2",
50
- "eslint-plugin-no-only-tests": "3.3.0",
51
50
  "eslint-plugin-sonarjs": "3.0.6",
52
51
  "npm-run-all": "^4.1.5",
53
52
  "oxfmt": "0.27.0",
53
+ "oxlint": "^1.43.0",
54
+ "oxlint-tsgolint": "0.11.4",
54
55
  "typescript": "5.9.3",
55
- "@gooddata/eslint-config": "11.19.0-alpha.9"
56
+ "@gooddata/eslint-config": "11.20.0-alpha.0",
57
+ "@gooddata/oxlint-config": "11.20.0-alpha.0"
56
58
  },
57
59
  "scripts": {
58
60
  "_phase:build": "npm run build",
@@ -67,6 +69,10 @@
67
69
  "eslint-fix": "eslint . --fix",
68
70
  "oxfmt-check": "oxfmt --check .",
69
71
  "oxfmt-write": "oxfmt .",
70
- "validate": "npm run eslint && npm run dep-cruiser && npm run oxfmt-check"
72
+ "validate": "npm run lint && npm run dep-cruiser && npm run oxfmt-check",
73
+ "lint": "npm run oxlint && npm run eslint",
74
+ "lint-fix": "npm run oxlint-fix && npm run eslint-fix",
75
+ "oxlint": "oxlint . --type-aware",
76
+ "oxlint-fix": "oxlint . --type-aware --fix"
71
77
  }
72
78
  }