mirror of
https://github.com/grafana/grafana.git
synced 2024-12-23 23:50:28 -06:00
Update dependency typescript to v5.3.3 (#81096)
* Update dependency typescript to v5.3.3 * update ApiKeysPage * fix remaining conflict in lockfile * update sdk --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
This commit is contained in:
parent
57c550778e
commit
7dd89134dc
2
.yarn/sdks/typescript/package.json
vendored
2
.yarn/sdks/typescript/package.json
vendored
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "typescript",
|
||||
"version": "5.2.2-sdk",
|
||||
"version": "5.3.3-sdk",
|
||||
"main": "./lib/typescript.js",
|
||||
"type": "commonjs",
|
||||
"bin": {
|
||||
|
@ -210,7 +210,7 @@
|
||||
"tracelib": "1.0.1",
|
||||
"ts-jest": "29.1.2",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.2.2",
|
||||
"typescript": "5.3.3",
|
||||
"webpack": "5.90.0",
|
||||
"webpack-bundle-analyzer": "4.10.1",
|
||||
"webpack-cli": "5.1.4",
|
||||
|
@ -91,7 +91,7 @@
|
||||
"rollup-plugin-dts": "^5.0.0",
|
||||
"rollup-plugin-esbuild": "5.0.0",
|
||||
"rollup-plugin-node-externals": "^5.0.0",
|
||||
"typescript": "5.2.2"
|
||||
"typescript": "5.3.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^17.0.0 || ^18.0.0",
|
||||
|
@ -52,6 +52,6 @@
|
||||
"dependencies": {
|
||||
"@grafana/tsconfig": "^1.2.0-rc1",
|
||||
"tslib": "2.6.2",
|
||||
"typescript": "5.2.2"
|
||||
"typescript": "5.3.3"
|
||||
}
|
||||
}
|
||||
|
@ -79,7 +79,7 @@
|
||||
"rollup-plugin-node-externals": "^5.0.0",
|
||||
"ts-jest": "29.1.2",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.2.2"
|
||||
"typescript": "5.3.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^17.0.0 || ^18.0.0",
|
||||
|
@ -42,7 +42,7 @@
|
||||
"react": "18.2.0",
|
||||
"ts-jest": "29.1.2",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.2.2"
|
||||
"typescript": "5.3.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^17.0.0 || ^18.0.0",
|
||||
|
@ -73,7 +73,7 @@
|
||||
"rollup-plugin-node-externals": "^5.0.0",
|
||||
"rollup-plugin-sourcemaps": "0.6.3",
|
||||
"rollup-plugin-terser": "7.0.2",
|
||||
"typescript": "5.2.2"
|
||||
"typescript": "5.3.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^17.0.0 || ^18.0.0",
|
||||
|
@ -47,7 +47,7 @@
|
||||
"rollup-plugin-dts": "^5.0.0",
|
||||
"rollup-plugin-esbuild": "5.0.0",
|
||||
"rollup-plugin-node-externals": "^5.0.0",
|
||||
"typescript": "5.2.2"
|
||||
"typescript": "5.3.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"tslib": "2.6.2"
|
||||
|
@ -182,7 +182,7 @@
|
||||
"storybook-addon-turbo-build": "2.0.1",
|
||||
"storybook-dark-mode": "3.0.1",
|
||||
"style-loader": "3.3.4",
|
||||
"typescript": "5.2.2",
|
||||
"typescript": "5.3.3",
|
||||
"webpack": "5.90.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -113,18 +113,10 @@ export class ApiKeysPageUnconnected extends PureComponent<Props, State> {
|
||||
migrationResult,
|
||||
} = this.props;
|
||||
|
||||
if (!hasFetched) {
|
||||
return (
|
||||
<Page {...defaultPageProps}>
|
||||
<Page.Contents isLoading={true}>{}</Page.Contents>
|
||||
</Page>
|
||||
);
|
||||
}
|
||||
|
||||
const showTable = apiKeysCount > 0;
|
||||
return (
|
||||
<Page {...defaultPageProps}>
|
||||
<Page.Contents isLoading={false}>
|
||||
<Page.Contents isLoading={!hasFetched}>
|
||||
<>
|
||||
<MigrateToServiceAccountsCard onMigrate={this.onMigrateApiKeys} apikeysCount={apiKeysCount} />
|
||||
{showTable ? (
|
||||
|
@ -35,7 +35,7 @@
|
||||
"@types/testing-library__jest-dom": "5.14.9",
|
||||
"react-select-event": "5.5.1",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.2.2",
|
||||
"typescript": "5.3.3",
|
||||
"webpack": "5.90.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -34,7 +34,7 @@
|
||||
"jest": "29.7.0",
|
||||
"style-loader": "3.3.4",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.2.2",
|
||||
"typescript": "5.3.3",
|
||||
"webpack": "5.90.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -56,7 +56,7 @@
|
||||
"glob": "10.3.10",
|
||||
"react-select-event": "5.5.1",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.2.2"
|
||||
"typescript": "5.3.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@grafana/runtime": "*"
|
||||
|
46
yarn.lock
46
yarn.lock
@ -2928,7 +2928,7 @@ __metadata:
|
||||
rxjs: "npm:7.8.1"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.2"
|
||||
typescript: "npm:5.2.2"
|
||||
typescript: "npm:5.3.3"
|
||||
webpack: "npm:5.90.0"
|
||||
peerDependencies:
|
||||
"@grafana/runtime": "*"
|
||||
@ -2967,7 +2967,7 @@ __metadata:
|
||||
style-loader: "npm:3.3.4"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.2"
|
||||
typescript: "npm:5.2.2"
|
||||
typescript: "npm:5.3.3"
|
||||
webpack: "npm:5.90.0"
|
||||
peerDependencies:
|
||||
"@grafana/runtime": "*"
|
||||
@ -3111,7 +3111,7 @@ __metadata:
|
||||
string_decoder: "npm:1.3.0"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.2"
|
||||
typescript: "npm:5.2.2"
|
||||
typescript: "npm:5.3.3"
|
||||
uuid: "npm:9.0.1"
|
||||
peerDependencies:
|
||||
"@grafana/runtime": "*"
|
||||
@ -3193,7 +3193,7 @@ __metadata:
|
||||
string-hash: "npm:^1.1.3"
|
||||
tinycolor2: "npm:1.6.0"
|
||||
tslib: "npm:2.6.2"
|
||||
typescript: "npm:5.2.2"
|
||||
typescript: "npm:5.3.3"
|
||||
uplot: "npm:1.6.28"
|
||||
xss: "npm:^1.0.14"
|
||||
peerDependencies:
|
||||
@ -3228,7 +3228,7 @@ __metadata:
|
||||
rollup-plugin-esbuild: "npm:5.0.0"
|
||||
rollup-plugin-node-externals: "npm:^5.0.0"
|
||||
tslib: "npm:2.6.2"
|
||||
typescript: "npm:5.2.2"
|
||||
typescript: "npm:5.3.3"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@ -3414,7 +3414,7 @@ __metadata:
|
||||
ts-jest: "npm:29.1.2"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.2"
|
||||
typescript: "npm:5.2.2"
|
||||
typescript: "npm:5.3.3"
|
||||
peerDependencies:
|
||||
react: ^17.0.0 || ^18.0.0
|
||||
react-dom: ^17.0.0 || ^18.0.0
|
||||
@ -3486,7 +3486,7 @@ __metadata:
|
||||
ts-jest: "npm:29.1.2"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.2"
|
||||
typescript: "npm:5.2.2"
|
||||
typescript: "npm:5.3.3"
|
||||
peerDependencies:
|
||||
react: ^17.0.0 || ^18.0.0
|
||||
react-dom: ^17.0.0 || ^18.0.0
|
||||
@ -3546,7 +3546,7 @@ __metadata:
|
||||
systemjs: "npm:6.14.3"
|
||||
systemjs-cjs-extra: "npm:0.2.0"
|
||||
tslib: "npm:2.6.2"
|
||||
typescript: "npm:5.2.2"
|
||||
typescript: "npm:5.3.3"
|
||||
peerDependencies:
|
||||
react: ^17.0.0 || ^18.0.0
|
||||
react-dom: ^17.0.0 || ^18.0.0
|
||||
@ -3587,7 +3587,7 @@ __metadata:
|
||||
rollup-plugin-esbuild: "npm:5.0.0"
|
||||
rollup-plugin-node-externals: "npm:^5.0.0"
|
||||
tslib: "npm:2.6.2"
|
||||
typescript: "npm:5.2.2"
|
||||
typescript: "npm:5.3.3"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@ -3740,7 +3740,7 @@ __metadata:
|
||||
style-loader: "npm:3.3.4"
|
||||
tinycolor2: "npm:1.6.0"
|
||||
tslib: "npm:2.6.2"
|
||||
typescript: "npm:5.2.2"
|
||||
typescript: "npm:5.3.3"
|
||||
uplot: "npm:1.6.28"
|
||||
uuid: "npm:9.0.1"
|
||||
webpack: "npm:5.90.0"
|
||||
@ -17318,7 +17318,7 @@ __metadata:
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.2"
|
||||
tween-functions: "npm:^1.2.0"
|
||||
typescript: "npm:5.2.2"
|
||||
typescript: "npm:5.3.3"
|
||||
uplot: "npm:1.6.28"
|
||||
uuid: "npm:9.0.1"
|
||||
vendor: "link:./public/vendor"
|
||||
@ -28960,7 +28960,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@npm:5.2.2, typescript@npm:>=2.7, typescript@npm:>=3 < 6":
|
||||
"typescript@npm:5.2.2":
|
||||
version: 5.2.2
|
||||
resolution: "typescript@npm:5.2.2"
|
||||
bin:
|
||||
@ -28970,6 +28970,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@npm:5.3.3, typescript@npm:>=2.7, typescript@npm:>=3 < 6":
|
||||
version: 5.3.3
|
||||
resolution: "typescript@npm:5.3.3"
|
||||
bin:
|
||||
tsc: bin/tsc
|
||||
tsserver: bin/tsserver
|
||||
checksum: 6e4e6a14a50c222b3d14d4ea2f729e79f972fa536ac1522b91202a9a65af3605c2928c4a790a4a50aa13694d461c479ba92cedaeb1e7b190aadaa4e4b96b8e18
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@patch:typescript@npm%3A4.8.4#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A^4.2.4#optional!builtin<compat/typescript>":
|
||||
version: 4.8.4
|
||||
resolution: "typescript@patch:typescript@npm%3A4.8.4#optional!builtin<compat/typescript>::version=4.8.4&hash=1a91c8"
|
||||
@ -28980,7 +28990,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@patch:typescript@npm%3A5.2.2#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A>=2.7#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A>=3 < 6#optional!builtin<compat/typescript>":
|
||||
"typescript@patch:typescript@npm%3A5.2.2#optional!builtin<compat/typescript>":
|
||||
version: 5.2.2
|
||||
resolution: "typescript@patch:typescript@npm%3A5.2.2#optional!builtin<compat/typescript>::version=5.2.2&hash=f3b441"
|
||||
bin:
|
||||
@ -28990,6 +29000,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A>=2.7#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A>=3 < 6#optional!builtin<compat/typescript>":
|
||||
version: 5.3.3
|
||||
resolution: "typescript@patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"
|
||||
bin:
|
||||
tsc: bin/tsc
|
||||
tsserver: bin/tsserver
|
||||
checksum: c93786fcc9a70718ba1e3819bab56064ead5817004d1b8186f8ca66165f3a2d0100fee91fa64c840dcd45f994ca5d615d8e1f566d39a7470fc1e014dbb4cf15d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"ua-parser-js@npm:^1.0.32":
|
||||
version: 1.0.33
|
||||
resolution: "ua-parser-js@npm:1.0.33"
|
||||
|
Loading…
Reference in New Issue
Block a user