浏览代码

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

songjianet 3 年之前
父节点
当前提交
f5c6216fd0
共有 3 个文件被更改,包括 826 次插入1147 次删除
  1. 30 30
      dolphinscheduler-ui/package.json
  2. 795 1117
      dolphinscheduler-ui/pnpm-lock.yaml
  3. 1 0
      dolphinscheduler-ui/src/components/form/fields/radio.ts

+ 30 - 30
dolphinscheduler-ui/package.json

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

文件差异内容过多而无法显示
+ 795 - 1117
dolphinscheduler-ui/pnpm-lock.yaml


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

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