@gooddata/sdk-ui-theme-provider 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.
package/esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // (C) 2020-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 package provides tools to make your application support themes.
5
5
  *
package/esm/internal.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // (C) 2024-2026 GoodData Corporation
2
- /* eslint-disable no-barrel-files/no-barrel-files */
2
+ /* oxlint-disable no-barrel-files/no-barrel-files */
3
3
  export { blueLightTheme } from "./defaultThemes/blueLight.js";
4
4
  export { greenDarkTheme } from "./defaultThemes/greenDark.js";
5
5
  export { indigoTheme } from "./defaultThemes/indigo.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-ui-theme-provider",
3
- "version": "11.19.0-alpha.9",
3
+ "version": "11.20.0-alpha.0",
4
4
  "description": "GoodData SDK - Theme provider",
5
5
  "license": "MIT",
6
6
  "author": "GoodData Corporation",
@@ -32,10 +32,10 @@
32
32
  "postcss-value-parser": "^4.2.0",
33
33
  "ts-invariant": "^0.7.5",
34
34
  "tslib": "2.8.1",
35
- "@gooddata/sdk-model": "11.19.0-alpha.9",
36
- "@gooddata/sdk-ui": "11.19.0-alpha.9",
37
- "@gooddata/sdk-backend-spi": "11.19.0-alpha.9",
38
- "@gooddata/util": "11.19.0-alpha.9"
35
+ "@gooddata/sdk-backend-spi": "11.20.0-alpha.0",
36
+ "@gooddata/sdk-model": "11.20.0-alpha.0",
37
+ "@gooddata/sdk-ui": "11.20.0-alpha.0",
38
+ "@gooddata/util": "11.20.0-alpha.0"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@microsoft/api-documenter": "^7.17.0",
@@ -53,7 +53,7 @@
53
53
  "dependency-cruiser": "^14.1.2",
54
54
  "eslint": "^9.39.2",
55
55
  "eslint-import-resolver-typescript": "4.4.4",
56
- "eslint-plugin-header": "3.1.1",
56
+ "eslint-plugin-headers": "1.3.3",
57
57
  "eslint-plugin-import-esm": "1.2.1",
58
58
  "eslint-plugin-import-x": "4.16.1",
59
59
  "eslint-plugin-jsdoc": "62.1.0",
@@ -65,14 +65,17 @@
65
65
  "happy-dom": "18.0.1",
66
66
  "npm-run-all": "^4.1.5",
67
67
  "oxfmt": "0.27.0",
68
+ "oxlint": "^1.43.0",
69
+ "oxlint-tsgolint": "0.11.4",
68
70
  "raf": "^3.4.1",
69
71
  "react": "19.1.1",
70
72
  "react-dom": "19.1.1",
71
73
  "typescript": "5.9.3",
72
74
  "vitest": "4.0.8",
73
- "@gooddata/eslint-config": "11.19.0-alpha.9",
74
- "@gooddata/sdk-backend-mockingbird": "11.19.0-alpha.9",
75
- "@gooddata/reference-workspace": "11.19.0-alpha.9"
75
+ "@gooddata/eslint-config": "11.20.0-alpha.0",
76
+ "@gooddata/reference-workspace": "11.20.0-alpha.0",
77
+ "@gooddata/oxlint-config": "11.20.0-alpha.0",
78
+ "@gooddata/sdk-backend-mockingbird": "11.20.0-alpha.0"
76
79
  },
77
80
  "peerDependencies": {
78
81
  "react": "^18.0.0 || ^19.0.0",
@@ -94,7 +97,11 @@
94
97
  "oxfmt-write": "oxfmt .",
95
98
  "test": "vitest watch",
96
99
  "test-once": "vitest run",
97
- "validate": "npm run eslint && npm run dep-cruiser && npm run oxfmt-check",
98
- "validate-esm": "node --input-type=module --eval 'import \"@gooddata/sdk-ui-theme-provider\"'"
100
+ "validate": "npm run lint && npm run dep-cruiser && npm run oxfmt-check",
101
+ "validate-esm": "node --input-type=module --eval 'import \"@gooddata/sdk-ui-theme-provider\"'",
102
+ "lint": "npm run oxlint && npm run eslint",
103
+ "lint-fix": "npm run oxlint-fix && npm run eslint-fix",
104
+ "oxlint": "oxlint . --type-aware",
105
+ "oxlint-fix": "oxlint . --type-aware --fix"
99
106
  }
100
107
  }