Browse Source

[Build][UI] Upgrade dependencies. (#9956)

(cherry picked from commit f5c6216fd0)
3.0.0/version-upgrade
songjianet 2 years ago committed by Jiajie Zhong
parent
commit
e2b6d02a69
  1. 60
      dolphinscheduler-ui/package.json
  2. 1912
      dolphinscheduler-ui/pnpm-lock.yaml
  3. 1
      dolphinscheduler-ui/src/components/form/fields/radio.ts

60
dolphinscheduler-ui/package.json

@ -9,50 +9,50 @@
"prettier": "prettier --write \"src/**/*.{vue,ts,tsx}\"" "prettier": "prettier --write \"src/**/*.{vue,ts,tsx}\""
}, },
"dependencies": { "dependencies": {
"@antv/layout": "^0.1.31", "@antv/layout": "^0.2.2",
"@antv/x6": "^1.30.1", "@antv/x6": "^1.31.5",
"@vueuse/core": "^7.6.2", "@vueuse/core": "^8.4.2",
"axios": "^0.24.0", "axios": "^0.27.2",
"date-fns": "^2.28.0", "date-fns": "^2.28.0",
"date-fns-tz": "^1.3.0", "date-fns-tz": "^1.3.4",
"echarts": "^5.3.0", "echarts": "^5.3.2",
"js-cookie": "^3.0.1", "js-cookie": "^3.0.1",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"monaco-editor": "^0.31.1", "monaco-editor": "^0.33.0",
"naive-ui": "^2.27.0", "naive-ui": "^2.28.2",
"nprogress": "^0.2.0", "nprogress": "^0.2.0",
"pinia": "^2.0.11", "pinia": "^2.0.14",
"pinia-plugin-persistedstate": "^1.2.2", "pinia-plugin-persistedstate": "^1.5.1",
"qs": "^6.10.3", "qs": "^6.10.3",
"screenfull": "^6.0.1", "screenfull": "^6.0.1",
"vfonts": "^0.1.0", "vfonts": "^0.0.3",
"vue": "^3.2.31", "vue": "^3.2.33",
"vue-i18n": "^9.2.0-beta.30", "vue-i18n": "^9.1.10",
"vue-router": "^4.0.12" "vue-router": "^4.0.15"
}, },
"devDependencies": { "devDependencies": {
"@types/js-cookie": "^3.0.1", "@types/js-cookie": "^3.0.2",
"@types/lodash": "^4.14.182", "@types/lodash": "^4.14.182",
"@types/node": "^16.11.25", "@types/node": "^17.0.31",
"@types/nprogress": "^0.2.0", "@types/nprogress": "^0.2.0",
"@types/qs": "^6.9.7", "@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.12.1", "@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.12.1", "@typescript-eslint/parser": "^5.22.0",
"@vicons/antd": "^0.11.0", "@vicons/antd": "^0.12.0",
"@vitejs/plugin-vue": "^1.10.2", "@vitejs/plugin-vue": "^2.3.2",
"@vitejs/plugin-vue-jsx": "^1.3.7", "@vitejs/plugin-vue-jsx": "^1.3.10",
"dart-sass": "^1.25.0", "dart-sass": "^1.25.0",
"eslint": "^8.9.0", "eslint": "^8.15.0",
"eslint-config-prettier": "^8.4.0", "eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0", "eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.5.0", "eslint-plugin-vue": "^8.7.1",
"prettier": "^2.5.1", "prettier": "^2.6.2",
"sass": "^1.49.8", "sass": "^1.51.0",
"sass-loader": "^12.6.0", "sass-loader": "^12.6.0",
"typescript": "^4.5.5", "typescript": "^4.6.4",
"typescript-plugin-css-modules": "^3.4.0", "typescript-plugin-css-modules": "^3.4.0",
"vite": "^2.8.4", "vite": "^2.9.8",
"vite-plugin-compression": "^0.3.6", "vite-plugin-compression": "^0.5.1",
"vue-tsc": "^0.28.10" "vue-tsc": "^0.34.11"
} }
} }

1912
dolphinscheduler-ui/pnpm-lock.yaml

File diff suppressed because it is too large Load Diff

1
dolphinscheduler-ui/src/components/form/fields/radio.ts

@ -39,6 +39,7 @@ export function renderRadio(item: IJsonItem, fields: { [field: string]: any }) {
() => () =>
h(NSpace, null, () => h(NSpace, null, () =>
unref(options).map((option: IOption) => unref(options).map((option: IOption) =>
// @ts-ignore
h(NRadio, option, () => option.label) h(NRadio, option, () => option.label)
) )
) )

Loading…
Cancel
Save