@gooddata/sdk-ui-catalog 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 +1 -1
- package/package.json +22 -15
package/esm/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-catalog",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.20.0-alpha.0",
|
|
4
4
|
"description": "GoodData SDK - Analytics Catalog",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "GoodData Corporation",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"lodash-es": "^4.17.23",
|
|
35
35
|
"react-intl": "7.1.11",
|
|
36
36
|
"tslib": "2.8.1",
|
|
37
|
-
"@gooddata/sdk-backend-spi": "11.
|
|
38
|
-
"@gooddata/sdk-model": "11.
|
|
39
|
-
"@gooddata/sdk-ui": "11.
|
|
40
|
-
"@gooddata/sdk-ui
|
|
41
|
-
"@gooddata/sdk-ui-
|
|
42
|
-
"@gooddata/sdk-ui-theme-provider": "11.
|
|
43
|
-
"@gooddata/util": "11.
|
|
37
|
+
"@gooddata/sdk-backend-spi": "11.20.0-alpha.0",
|
|
38
|
+
"@gooddata/sdk-model": "11.20.0-alpha.0",
|
|
39
|
+
"@gooddata/sdk-ui-kit": "11.20.0-alpha.0",
|
|
40
|
+
"@gooddata/sdk-ui": "11.20.0-alpha.0",
|
|
41
|
+
"@gooddata/sdk-ui-semantic-search": "11.20.0-alpha.0",
|
|
42
|
+
"@gooddata/sdk-ui-theme-provider": "11.20.0-alpha.0",
|
|
43
|
+
"@gooddata/util": "11.20.0-alpha.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@microsoft/api-documenter": "^7.17.0",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"dependency-cruiser": "^14.1.2",
|
|
58
58
|
"eslint": "^9.39.2",
|
|
59
59
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
60
|
-
"eslint-plugin-
|
|
60
|
+
"eslint-plugin-headers": "1.3.3",
|
|
61
61
|
"eslint-plugin-import-esm": "1.2.1",
|
|
62
62
|
"eslint-plugin-import-x": "4.16.1",
|
|
63
63
|
"eslint-plugin-jsdoc": "62.1.0",
|
|
@@ -69,6 +69,8 @@
|
|
|
69
69
|
"happy-dom": "18.0.1",
|
|
70
70
|
"npm-run-all": "^4.1.5",
|
|
71
71
|
"oxfmt": "0.27.0",
|
|
72
|
+
"oxlint": "^1.43.0",
|
|
73
|
+
"oxlint-tsgolint": "0.11.4",
|
|
72
74
|
"raf": "^3.4.1",
|
|
73
75
|
"react": "19.1.1",
|
|
74
76
|
"react-dom": "19.1.1",
|
|
@@ -77,10 +79,11 @@
|
|
|
77
79
|
"typescript": "5.9.3",
|
|
78
80
|
"vitest": "4.0.8",
|
|
79
81
|
"vitest-dom": "0.1.1",
|
|
80
|
-
"@gooddata/eslint-config": "11.
|
|
81
|
-
"@gooddata/i18n-toolkit": "11.
|
|
82
|
-
"@gooddata/sdk-backend-mockingbird": "11.
|
|
83
|
-
"@gooddata/stylelint-config": "11.
|
|
82
|
+
"@gooddata/eslint-config": "11.20.0-alpha.0",
|
|
83
|
+
"@gooddata/i18n-toolkit": "11.20.0-alpha.0",
|
|
84
|
+
"@gooddata/sdk-backend-mockingbird": "11.20.0-alpha.0",
|
|
85
|
+
"@gooddata/stylelint-config": "11.20.0-alpha.0",
|
|
86
|
+
"@gooddata/oxlint-config": "11.20.0-alpha.0"
|
|
84
87
|
},
|
|
85
88
|
"peerDependencies": {
|
|
86
89
|
"react": "^18.0.0 || ^19.0.0",
|
|
@@ -107,9 +110,13 @@
|
|
|
107
110
|
"stylelint-fix": "stylelint '**/*.scss' --fix",
|
|
108
111
|
"test": "vitest watch",
|
|
109
112
|
"test-once": "vitest run",
|
|
110
|
-
"validate": "npm run
|
|
113
|
+
"validate": "npm run lint && npm run dep-cruiser && npm run stylelint && npm run validate-locales && npm run oxfmt-check && npm run validate-theming",
|
|
111
114
|
"validate-esm": "node --input-type=module --eval 'import \"@gooddata/sdk-ui-catalog\"'",
|
|
112
115
|
"validate-locales": "i18n-toolkit",
|
|
113
|
-
"validate-theming": "npm run scss && node scripts/validateCss.js"
|
|
116
|
+
"validate-theming": "npm run scss && node scripts/validateCss.js",
|
|
117
|
+
"lint": "npm run oxlint && npm run eslint",
|
|
118
|
+
"lint-fix": "npm run oxlint-fix && npm run eslint-fix",
|
|
119
|
+
"oxlint": "oxlint . --type-aware",
|
|
120
|
+
"oxlint-fix": "oxlint . --type-aware --fix"
|
|
114
121
|
}
|
|
115
122
|
}
|