mirror of
				https://github.com/pure-admin/vue-pure-admin.git
				synced 2025-11-03 13:44:47 +08:00 
			
		
		
		
	chore: 更新eslint相关依赖并作兼容处理
				
					
				
			This commit is contained in:
		
							parent
							
								
									92cfa9763b
								
							
						
					
					
						commit
						583feae7b7
					
				@ -1,11 +1,10 @@
 | 
				
			|||||||
import js from "@eslint/js";
 | 
					import js from "@eslint/js";
 | 
				
			||||||
 | 
					import tseslint from "typescript-eslint";
 | 
				
			||||||
import pluginVue from "eslint-plugin-vue";
 | 
					import pluginVue from "eslint-plugin-vue";
 | 
				
			||||||
import * as parserVue from "vue-eslint-parser";
 | 
					import * as parserVue from "vue-eslint-parser";
 | 
				
			||||||
import configPrettier from "eslint-config-prettier";
 | 
					import configPrettier from "eslint-config-prettier";
 | 
				
			||||||
import pluginPrettier from "eslint-plugin-prettier";
 | 
					import pluginPrettier from "eslint-plugin-prettier";
 | 
				
			||||||
import { defineConfig, globalIgnores } from "eslint/config";
 | 
					import { defineConfig, globalIgnores } from "eslint/config";
 | 
				
			||||||
import * as parserTypeScript from "@typescript-eslint/parser";
 | 
					 | 
				
			||||||
import pluginTypeScript from "@typescript-eslint/eslint-plugin";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default defineConfig([
 | 
					export default defineConfig([
 | 
				
			||||||
  globalIgnores([
 | 
					  globalIgnores([
 | 
				
			||||||
@ -20,7 +19,7 @@ export default defineConfig([
 | 
				
			|||||||
    ...js.configs.recommended,
 | 
					    ...js.configs.recommended,
 | 
				
			||||||
    languageOptions: {
 | 
					    languageOptions: {
 | 
				
			||||||
      globals: {
 | 
					      globals: {
 | 
				
			||||||
        // index.d.ts
 | 
					        // types/index.d.ts
 | 
				
			||||||
        RefType: "readonly",
 | 
					        RefType: "readonly",
 | 
				
			||||||
        EmitType: "readonly",
 | 
					        EmitType: "readonly",
 | 
				
			||||||
        TargetContext: "readonly",
 | 
					        TargetContext: "readonly",
 | 
				
			||||||
@ -73,21 +72,10 @@ export default defineConfig([
 | 
				
			|||||||
      ]
 | 
					      ]
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  {
 | 
					  ...tseslint.config({
 | 
				
			||||||
 | 
					    extends: [...tseslint.configs.recommended],
 | 
				
			||||||
    files: ["**/*.?([cm])ts", "**/*.?([cm])tsx"],
 | 
					    files: ["**/*.?([cm])ts", "**/*.?([cm])tsx"],
 | 
				
			||||||
    languageOptions: {
 | 
					 | 
				
			||||||
      parser: parserTypeScript,
 | 
					 | 
				
			||||||
      parserOptions: {
 | 
					 | 
				
			||||||
        sourceType: "module",
 | 
					 | 
				
			||||||
        warnOnUnsupportedTypeScriptVersion: false
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
    },
 | 
					 | 
				
			||||||
    plugins: {
 | 
					 | 
				
			||||||
      "@typescript-eslint": pluginTypeScript
 | 
					 | 
				
			||||||
    },
 | 
					 | 
				
			||||||
    rules: {
 | 
					    rules: {
 | 
				
			||||||
      ...pluginTypeScript.configs.strict.rules,
 | 
					 | 
				
			||||||
      "@typescript-eslint/ban-types": "off",
 | 
					 | 
				
			||||||
      "@typescript-eslint/no-redeclare": "error",
 | 
					      "@typescript-eslint/no-redeclare": "error",
 | 
				
			||||||
      "@typescript-eslint/ban-ts-comment": "off",
 | 
					      "@typescript-eslint/ban-ts-comment": "off",
 | 
				
			||||||
      "@typescript-eslint/no-explicit-any": "off",
 | 
					      "@typescript-eslint/no-explicit-any": "off",
 | 
				
			||||||
@ -114,20 +102,20 @@ export default defineConfig([
 | 
				
			|||||||
        }
 | 
					        }
 | 
				
			||||||
      ]
 | 
					      ]
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  },
 | 
					  }),
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    files: ["**/*.d.ts"],
 | 
					    files: ["**/*.d.ts"],
 | 
				
			||||||
    rules: {
 | 
					    rules: {
 | 
				
			||||||
      "eslint-comments/no-unlimited-disable": "off",
 | 
					      "eslint-comments/no-unlimited-disable": "off",
 | 
				
			||||||
      "import/no-duplicates": "off",
 | 
					      "import/no-duplicates": "off",
 | 
				
			||||||
 | 
					      "no-restricted-syntax": "off",
 | 
				
			||||||
      "unused-imports/no-unused-vars": "off"
 | 
					      "unused-imports/no-unused-vars": "off"
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    files: ["**/*.?([cm])js"],
 | 
					    files: ["**/*.?([cm])js"],
 | 
				
			||||||
    rules: {
 | 
					    rules: {
 | 
				
			||||||
      "@typescript-eslint/no-require-imports": "off",
 | 
					      "@typescript-eslint/no-require-imports": "off"
 | 
				
			||||||
      "@typescript-eslint/no-var-requires": "off"
 | 
					 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
@ -148,18 +136,19 @@ export default defineConfig([
 | 
				
			|||||||
          jsx: true
 | 
					          jsx: true
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
        extraFileExtensions: [".vue"],
 | 
					        extraFileExtensions: [".vue"],
 | 
				
			||||||
        parser: "@typescript-eslint/parser",
 | 
					        parser: tseslint.parser,
 | 
				
			||||||
        sourceType: "module"
 | 
					        sourceType: "module"
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    plugins: {
 | 
					    plugins: {
 | 
				
			||||||
 | 
					      "@typescript-eslint": tseslint.plugin,
 | 
				
			||||||
      vue: pluginVue
 | 
					      vue: pluginVue
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    processor: pluginVue.processors[".vue"],
 | 
					    processor: pluginVue.processors[".vue"],
 | 
				
			||||||
    rules: {
 | 
					    rules: {
 | 
				
			||||||
      ...pluginVue.configs.base.rules,
 | 
					      ...pluginVue.configs.base.rules,
 | 
				
			||||||
      ...pluginVue.configs["vue3-essential"].rules,
 | 
					      ...pluginVue.configs.essential.rules,
 | 
				
			||||||
      ...pluginVue.configs["vue3-recommended"].rules,
 | 
					      ...pluginVue.configs.recommended.rules,
 | 
				
			||||||
      "no-undef": "off",
 | 
					      "no-undef": "off",
 | 
				
			||||||
      "no-unused-vars": "off",
 | 
					      "no-unused-vars": "off",
 | 
				
			||||||
      "vue/no-v-html": "off",
 | 
					      "vue/no-v-html": "off",
 | 
				
			||||||
 | 
				
			|||||||
@ -25,7 +25,7 @@ export default defineFakeRoute([
 | 
				
			|||||||
    url: "/mine-logs",
 | 
					    url: "/mine-logs",
 | 
				
			||||||
    method: "get",
 | 
					    method: "get",
 | 
				
			||||||
    response: () => {
 | 
					    response: () => {
 | 
				
			||||||
      let list = [
 | 
					      const list = [
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
          id: 1,
 | 
					          id: 1,
 | 
				
			||||||
          ip: faker.internet.ipv4(),
 | 
					          ip: faker.internet.ipv4(),
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										21
									
								
								package.json
									
									
									
									
									
								
							
							
						
						
									
										21
									
								
								package.json
									
									
									
									
									
								
							@ -117,7 +117,7 @@
 | 
				
			|||||||
    "@commitlint/cli": "^19.7.1",
 | 
					    "@commitlint/cli": "^19.7.1",
 | 
				
			||||||
    "@commitlint/config-conventional": "^19.7.1",
 | 
					    "@commitlint/config-conventional": "^19.7.1",
 | 
				
			||||||
    "@commitlint/types": "^19.5.0",
 | 
					    "@commitlint/types": "^19.5.0",
 | 
				
			||||||
    "@eslint/js": "^9.20.0",
 | 
					    "@eslint/js": "^9.24.0",
 | 
				
			||||||
    "@faker-js/faker": "^9.5.0",
 | 
					    "@faker-js/faker": "^9.5.0",
 | 
				
			||||||
    "@iconify/json": "^2.2.319",
 | 
					    "@iconify/json": "^2.2.319",
 | 
				
			||||||
    "@iconify/vue": "4.2.0",
 | 
					    "@iconify/vue": "4.2.0",
 | 
				
			||||||
@ -132,8 +132,6 @@
 | 
				
			|||||||
    "@types/qrcode": "^1.5.5",
 | 
					    "@types/qrcode": "^1.5.5",
 | 
				
			||||||
    "@types/qs": "^6.9.18",
 | 
					    "@types/qs": "^6.9.18",
 | 
				
			||||||
    "@types/sortablejs": "^1.15.8",
 | 
					    "@types/sortablejs": "^1.15.8",
 | 
				
			||||||
    "@typescript-eslint/eslint-plugin": "^8.24.0",
 | 
					 | 
				
			||||||
    "@typescript-eslint/parser": "^8.24.0",
 | 
					 | 
				
			||||||
    "@vitejs/plugin-vue": "^5.2.1",
 | 
					    "@vitejs/plugin-vue": "^5.2.1",
 | 
				
			||||||
    "@vitejs/plugin-vue-jsx": "^4.1.1",
 | 
					    "@vitejs/plugin-vue-jsx": "^4.1.1",
 | 
				
			||||||
    "autoprefixer": "^10.4.20",
 | 
					    "autoprefixer": "^10.4.20",
 | 
				
			||||||
@ -141,10 +139,10 @@
 | 
				
			|||||||
    "code-inspector-plugin": "^0.20.0",
 | 
					    "code-inspector-plugin": "^0.20.0",
 | 
				
			||||||
    "cssnano": "^7.0.6",
 | 
					    "cssnano": "^7.0.6",
 | 
				
			||||||
    "dagre": "^0.8.5",
 | 
					    "dagre": "^0.8.5",
 | 
				
			||||||
    "eslint": "^9.23.0",
 | 
					    "eslint": "^9.24.0",
 | 
				
			||||||
    "eslint-config-prettier": "^10.0.1",
 | 
					    "eslint-config-prettier": "^10.1.1",
 | 
				
			||||||
    "eslint-plugin-prettier": "^5.2.3",
 | 
					    "eslint-plugin-prettier": "^5.2.6",
 | 
				
			||||||
    "eslint-plugin-vue": "^9.32.0",
 | 
					    "eslint-plugin-vue": "^10.0.0",
 | 
				
			||||||
    "gradient-string": "^3.0.0",
 | 
					    "gradient-string": "^3.0.0",
 | 
				
			||||||
    "husky": "^9.1.7",
 | 
					    "husky": "^9.1.7",
 | 
				
			||||||
    "lint-staged": "^15.4.3",
 | 
					    "lint-staged": "^15.4.3",
 | 
				
			||||||
@ -164,6 +162,7 @@
 | 
				
			|||||||
    "svgo": "^3.3.2",
 | 
					    "svgo": "^3.3.2",
 | 
				
			||||||
    "tailwindcss": "3.4.17",
 | 
					    "tailwindcss": "3.4.17",
 | 
				
			||||||
    "typescript": "^5.7.3",
 | 
					    "typescript": "^5.7.3",
 | 
				
			||||||
 | 
					    "typescript-eslint": "^8.29.1",
 | 
				
			||||||
    "unplugin-icons": "^22.1.0",
 | 
					    "unplugin-icons": "^22.1.0",
 | 
				
			||||||
    "vite": "^6.1.0",
 | 
					    "vite": "^6.1.0",
 | 
				
			||||||
    "vite-plugin-cdn-import": "^1.0.1",
 | 
					    "vite-plugin-cdn-import": "^1.0.1",
 | 
				
			||||||
@ -172,7 +171,7 @@
 | 
				
			|||||||
    "vite-plugin-remove-console": "^2.2.0",
 | 
					    "vite-plugin-remove-console": "^2.2.0",
 | 
				
			||||||
    "vite-plugin-router-warn": "^1.0.0",
 | 
					    "vite-plugin-router-warn": "^1.0.0",
 | 
				
			||||||
    "vite-svg-loader": "^5.1.0",
 | 
					    "vite-svg-loader": "^5.1.0",
 | 
				
			||||||
    "vue-eslint-parser": "^9.4.3",
 | 
					    "vue-eslint-parser": "^10.1.3",
 | 
				
			||||||
    "vue-tsc": "^2.2.0"
 | 
					    "vue-tsc": "^2.2.0"
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "engines": {
 | 
					  "engines": {
 | 
				
			||||||
@ -183,6 +182,7 @@
 | 
				
			|||||||
    "allowedDeprecatedVersions": {
 | 
					    "allowedDeprecatedVersions": {
 | 
				
			||||||
      "are-we-there-yet": "*",
 | 
					      "are-we-there-yet": "*",
 | 
				
			||||||
      "sourcemap-codec": "*",
 | 
					      "sourcemap-codec": "*",
 | 
				
			||||||
 | 
					      "lodash.isequal": "*",
 | 
				
			||||||
      "domexception": "*",
 | 
					      "domexception": "*",
 | 
				
			||||||
      "w3c-hr-time": "*",
 | 
					      "w3c-hr-time": "*",
 | 
				
			||||||
      "inflight": "*",
 | 
					      "inflight": "*",
 | 
				
			||||||
@ -193,11 +193,6 @@
 | 
				
			|||||||
      "abab": "*",
 | 
					      "abab": "*",
 | 
				
			||||||
      "glob": "*"
 | 
					      "glob": "*"
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "peerDependencyRules": {
 | 
					 | 
				
			||||||
      "allowedVersions": {
 | 
					 | 
				
			||||||
        "eslint": "9"
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
    },
 | 
					 | 
				
			||||||
    "onlyBuiltDependencies": [
 | 
					    "onlyBuiltDependencies": [
 | 
				
			||||||
      "@parcel/watcher",
 | 
					      "@parcel/watcher",
 | 
				
			||||||
      "core-js",
 | 
					      "core-js",
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										301
									
								
								pnpm-lock.yaml
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										301
									
								
								pnpm-lock.yaml
									
									
									
										generated
									
									
									
								
							@ -214,8 +214,8 @@ importers:
 | 
				
			|||||||
        specifier: ^19.5.0
 | 
					        specifier: ^19.5.0
 | 
				
			||||||
        version: 19.5.0
 | 
					        version: 19.5.0
 | 
				
			||||||
      '@eslint/js':
 | 
					      '@eslint/js':
 | 
				
			||||||
        specifier: ^9.20.0
 | 
					        specifier: ^9.24.0
 | 
				
			||||||
        version: 9.20.0
 | 
					        version: 9.24.0
 | 
				
			||||||
      '@faker-js/faker':
 | 
					      '@faker-js/faker':
 | 
				
			||||||
        specifier: ^9.5.0
 | 
					        specifier: ^9.5.0
 | 
				
			||||||
        version: 9.5.0
 | 
					        version: 9.5.0
 | 
				
			||||||
@ -227,7 +227,7 @@ importers:
 | 
				
			|||||||
        version: 4.2.0(vue@3.5.13(typescript@5.7.3))
 | 
					        version: 4.2.0(vue@3.5.13(typescript@5.7.3))
 | 
				
			||||||
      '@intlify/unplugin-vue-i18n':
 | 
					      '@intlify/unplugin-vue-i18n':
 | 
				
			||||||
        specifier: ^6.0.3
 | 
					        specifier: ^6.0.3
 | 
				
			||||||
        version: 6.0.3(@vue/compiler-dom@3.5.13)(eslint@9.23.0(jiti@2.4.2))(rollup@4.34.6)(typescript@5.7.3)(vue-i18n@11.1.1(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3))
 | 
					        version: 6.0.3(@vue/compiler-dom@3.5.13)(eslint@9.24.0(jiti@2.4.2))(rollup@4.34.6)(typescript@5.7.3)(vue-i18n@11.1.1(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3))
 | 
				
			||||||
      '@types/codemirror':
 | 
					      '@types/codemirror':
 | 
				
			||||||
        specifier: ^5.60.15
 | 
					        specifier: ^5.60.15
 | 
				
			||||||
        version: 5.60.15
 | 
					        version: 5.60.15
 | 
				
			||||||
@ -258,12 +258,6 @@ importers:
 | 
				
			|||||||
      '@types/sortablejs':
 | 
					      '@types/sortablejs':
 | 
				
			||||||
        specifier: ^1.15.8
 | 
					        specifier: ^1.15.8
 | 
				
			||||||
        version: 1.15.8
 | 
					        version: 1.15.8
 | 
				
			||||||
      '@typescript-eslint/eslint-plugin':
 | 
					 | 
				
			||||||
        specifier: ^8.24.0
 | 
					 | 
				
			||||||
        version: 8.24.0(@typescript-eslint/parser@8.24.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.23.0(jiti@2.4.2))(typescript@5.7.3)
 | 
					 | 
				
			||||||
      '@typescript-eslint/parser':
 | 
					 | 
				
			||||||
        specifier: ^8.24.0
 | 
					 | 
				
			||||||
        version: 8.24.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.7.3)
 | 
					 | 
				
			||||||
      '@vitejs/plugin-vue':
 | 
					      '@vitejs/plugin-vue':
 | 
				
			||||||
        specifier: ^5.2.1
 | 
					        specifier: ^5.2.1
 | 
				
			||||||
        version: 5.2.1(vite@6.1.0(@types/node@20.17.19)(jiti@2.4.2)(sass@1.85.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.7.3))
 | 
					        version: 5.2.1(vite@6.1.0(@types/node@20.17.19)(jiti@2.4.2)(sass@1.85.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.7.3))
 | 
				
			||||||
@ -286,17 +280,17 @@ importers:
 | 
				
			|||||||
        specifier: ^0.8.5
 | 
					        specifier: ^0.8.5
 | 
				
			||||||
        version: 0.8.5
 | 
					        version: 0.8.5
 | 
				
			||||||
      eslint:
 | 
					      eslint:
 | 
				
			||||||
        specifier: ^9.23.0
 | 
					        specifier: ^9.24.0
 | 
				
			||||||
        version: 9.23.0(jiti@2.4.2)
 | 
					        version: 9.24.0(jiti@2.4.2)
 | 
				
			||||||
      eslint-config-prettier:
 | 
					      eslint-config-prettier:
 | 
				
			||||||
        specifier: ^10.0.1
 | 
					        specifier: ^10.1.1
 | 
				
			||||||
        version: 10.0.1(eslint@9.23.0(jiti@2.4.2))
 | 
					        version: 10.1.1(eslint@9.24.0(jiti@2.4.2))
 | 
				
			||||||
      eslint-plugin-prettier:
 | 
					      eslint-plugin-prettier:
 | 
				
			||||||
        specifier: ^5.2.3
 | 
					        specifier: ^5.2.6
 | 
				
			||||||
        version: 5.2.3(eslint-config-prettier@10.0.1(eslint@9.23.0(jiti@2.4.2)))(eslint@9.23.0(jiti@2.4.2))(prettier@3.5.1)
 | 
					        version: 5.2.6(eslint-config-prettier@10.1.1(eslint@9.24.0(jiti@2.4.2)))(eslint@9.24.0(jiti@2.4.2))(prettier@3.5.1)
 | 
				
			||||||
      eslint-plugin-vue:
 | 
					      eslint-plugin-vue:
 | 
				
			||||||
        specifier: ^9.32.0
 | 
					        specifier: ^10.0.0
 | 
				
			||||||
        version: 9.32.0(eslint@9.23.0(jiti@2.4.2))
 | 
					        version: 10.0.0(eslint@9.24.0(jiti@2.4.2))(vue-eslint-parser@10.1.3(eslint@9.24.0(jiti@2.4.2)))
 | 
				
			||||||
      gradient-string:
 | 
					      gradient-string:
 | 
				
			||||||
        specifier: ^3.0.0
 | 
					        specifier: ^3.0.0
 | 
				
			||||||
        version: 3.0.0
 | 
					        version: 3.0.0
 | 
				
			||||||
@ -354,6 +348,9 @@ importers:
 | 
				
			|||||||
      typescript:
 | 
					      typescript:
 | 
				
			||||||
        specifier: ^5.7.3
 | 
					        specifier: ^5.7.3
 | 
				
			||||||
        version: 5.7.3
 | 
					        version: 5.7.3
 | 
				
			||||||
 | 
					      typescript-eslint:
 | 
				
			||||||
 | 
					        specifier: ^8.29.1
 | 
				
			||||||
 | 
					        version: 8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.7.3)
 | 
				
			||||||
      unplugin-icons:
 | 
					      unplugin-icons:
 | 
				
			||||||
        specifier: ^22.1.0
 | 
					        specifier: ^22.1.0
 | 
				
			||||||
        version: 22.1.0(@vue/compiler-sfc@3.5.13)
 | 
					        version: 22.1.0(@vue/compiler-sfc@3.5.13)
 | 
				
			||||||
@ -379,8 +376,8 @@ importers:
 | 
				
			|||||||
        specifier: ^5.1.0
 | 
					        specifier: ^5.1.0
 | 
				
			||||||
        version: 5.1.0(vue@3.5.13(typescript@5.7.3))
 | 
					        version: 5.1.0(vue@3.5.13(typescript@5.7.3))
 | 
				
			||||||
      vue-eslint-parser:
 | 
					      vue-eslint-parser:
 | 
				
			||||||
        specifier: ^9.4.3
 | 
					        specifier: ^10.1.3
 | 
				
			||||||
        version: 9.4.3(eslint@9.23.0(jiti@2.4.2))
 | 
					        version: 10.1.3(eslint@9.24.0(jiti@2.4.2))
 | 
				
			||||||
      vue-tsc:
 | 
					      vue-tsc:
 | 
				
			||||||
        specifier: ^2.2.0
 | 
					        specifier: ^2.2.0
 | 
				
			||||||
        version: 2.2.0(typescript@5.7.3)
 | 
					        version: 2.2.0(typescript@5.7.3)
 | 
				
			||||||
@ -871,8 +868,8 @@ packages:
 | 
				
			|||||||
    resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
 | 
					    resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
 | 
				
			||||||
    engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
 | 
					    engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@eslint/config-array@0.19.2':
 | 
					  '@eslint/config-array@0.20.0':
 | 
				
			||||||
    resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
 | 
					    resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==}
 | 
				
			||||||
    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@eslint/config-helpers@0.2.0':
 | 
					  '@eslint/config-helpers@0.2.0':
 | 
				
			||||||
@ -887,12 +884,8 @@ packages:
 | 
				
			|||||||
    resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
 | 
					    resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
 | 
				
			||||||
    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@eslint/js@9.20.0':
 | 
					  '@eslint/js@9.24.0':
 | 
				
			||||||
    resolution: {integrity: sha512-iZA07H9io9Wn836aVTytRaNqh00Sad+EamwOVJT12GTLw1VGMFV/4JaME+JjLtr9fiGaoWgYnS54wrfWsSs4oQ==}
 | 
					    resolution: {integrity: sha512-uIY/y3z0uvOGX8cp1C2fiC4+ZmBhp6yZWkojtHL1YEMnRt1Y63HB9TM17proGEmeG7HeUY+UP36F0aknKYTpYA==}
 | 
				
			||||||
    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  '@eslint/js@9.23.0':
 | 
					 | 
				
			||||||
    resolution: {integrity: sha512-35MJ8vCPU0ZMxo7zfev2pypqTwWTofFZO6m4KAtdoFhRpLJUpHTZZ+KB3C7Hb1d7bULYwO4lJXGCi5Se+8OMbw==}
 | 
					 | 
				
			||||||
    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@eslint/object-schema@2.1.6':
 | 
					  '@eslint/object-schema@2.1.6':
 | 
				
			||||||
@ -1301,8 +1294,8 @@ packages:
 | 
				
			|||||||
    resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
 | 
					    resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
 | 
				
			||||||
    engines: {node: '>=14'}
 | 
					    engines: {node: '>=14'}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@pkgr/core@0.1.1':
 | 
					  '@pkgr/core@0.2.1':
 | 
				
			||||||
    resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
 | 
					    resolution: {integrity: sha512-VzgHzGblFmUeBmmrk55zPyrQIArQN4vujc9shWytaPdB3P7qhi0cpaiKIr7tlCmFv2lYUwnLospIqjL9ZSAhhg==}
 | 
				
			||||||
    engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
 | 
					    engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@popperjs/core@2.11.8':
 | 
					  '@popperjs/core@2.11.8':
 | 
				
			||||||
@ -1572,53 +1565,71 @@ packages:
 | 
				
			|||||||
  '@types/yargs@16.0.9':
 | 
					  '@types/yargs@16.0.9':
 | 
				
			||||||
    resolution: {integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==}
 | 
					    resolution: {integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@typescript-eslint/eslint-plugin@8.24.0':
 | 
					  '@typescript-eslint/eslint-plugin@8.29.1':
 | 
				
			||||||
    resolution: {integrity: sha512-aFcXEJJCI4gUdXgoo/j9udUYIHgF23MFkg09LFz2dzEmU0+1Plk4rQWv/IYKvPHAtlkkGoB3m5e6oUp+JPsNaQ==}
 | 
					    resolution: {integrity: sha512-ba0rr4Wfvg23vERs3eB+P3lfj2E+2g3lhWcCVukUuhtcdUx5lSIFZlGFEBHKr+3zizDa/TvZTptdNHVZWAkSBg==}
 | 
				
			||||||
    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
    peerDependencies:
 | 
					    peerDependencies:
 | 
				
			||||||
      '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
 | 
					      '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
 | 
				
			||||||
      eslint: ^8.57.0 || ^9.0.0
 | 
					      eslint: ^8.57.0 || ^9.0.0
 | 
				
			||||||
      typescript: '>=4.8.4 <5.8.0'
 | 
					      typescript: '>=4.8.4 <5.9.0'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@typescript-eslint/parser@8.24.0':
 | 
					  '@typescript-eslint/parser@8.29.1':
 | 
				
			||||||
    resolution: {integrity: sha512-MFDaO9CYiard9j9VepMNa9MTcqVvSny2N4hkY6roquzj8pdCBRENhErrteaQuu7Yjn1ppk0v1/ZF9CG3KIlrTA==}
 | 
					    resolution: {integrity: sha512-zczrHVEqEaTwh12gWBIJWj8nx+ayDcCJs06yoNMY0kwjMWDM6+kppljY+BxWI06d2Ja+h4+WdufDcwMnnMEWmg==}
 | 
				
			||||||
    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
    peerDependencies:
 | 
					    peerDependencies:
 | 
				
			||||||
      eslint: ^8.57.0 || ^9.0.0
 | 
					      eslint: ^8.57.0 || ^9.0.0
 | 
				
			||||||
      typescript: '>=4.8.4 <5.8.0'
 | 
					      typescript: '>=4.8.4 <5.9.0'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@typescript-eslint/scope-manager@8.24.0':
 | 
					  '@typescript-eslint/scope-manager@8.24.0':
 | 
				
			||||||
    resolution: {integrity: sha512-HZIX0UByphEtdVBKaQBgTDdn9z16l4aTUz8e8zPQnyxwHBtf5vtl1L+OhH+m1FGV9DrRmoDuYKqzVrvWDcDozw==}
 | 
					    resolution: {integrity: sha512-HZIX0UByphEtdVBKaQBgTDdn9z16l4aTUz8e8zPQnyxwHBtf5vtl1L+OhH+m1FGV9DrRmoDuYKqzVrvWDcDozw==}
 | 
				
			||||||
    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@typescript-eslint/type-utils@8.24.0':
 | 
					  '@typescript-eslint/scope-manager@8.29.1':
 | 
				
			||||||
    resolution: {integrity: sha512-8fitJudrnY8aq0F1wMiPM1UUgiXQRJ5i8tFjq9kGfRajU+dbPyOuHbl0qRopLEidy0MwqgTHDt6CnSeXanNIwA==}
 | 
					    resolution: {integrity: sha512-2nggXGX5F3YrsGN08pw4XpMLO1Rgtnn4AzTegC2MDesv6q3QaTU5yU7IbS1tf1IwCR0Hv/1EFygLn9ms6LIpDA==}
 | 
				
			||||||
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  '@typescript-eslint/type-utils@8.29.1':
 | 
				
			||||||
 | 
					    resolution: {integrity: sha512-DkDUSDwZVCYN71xA4wzySqqcZsHKic53A4BLqmrWFFpOpNSoxX233lwGu/2135ymTCR04PoKiEEEvN1gFYg4Tw==}
 | 
				
			||||||
    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
    peerDependencies:
 | 
					    peerDependencies:
 | 
				
			||||||
      eslint: ^8.57.0 || ^9.0.0
 | 
					      eslint: ^8.57.0 || ^9.0.0
 | 
				
			||||||
      typescript: '>=4.8.4 <5.8.0'
 | 
					      typescript: '>=4.8.4 <5.9.0'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@typescript-eslint/types@8.24.0':
 | 
					  '@typescript-eslint/types@8.24.0':
 | 
				
			||||||
    resolution: {integrity: sha512-VacJCBTyje7HGAw7xp11q439A+zeGG0p0/p2zsZwpnMzjPB5WteaWqt4g2iysgGFafrqvyLWqq6ZPZAOCoefCw==}
 | 
					    resolution: {integrity: sha512-VacJCBTyje7HGAw7xp11q439A+zeGG0p0/p2zsZwpnMzjPB5WteaWqt4g2iysgGFafrqvyLWqq6ZPZAOCoefCw==}
 | 
				
			||||||
    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  '@typescript-eslint/types@8.29.1':
 | 
				
			||||||
 | 
					    resolution: {integrity: sha512-VT7T1PuJF1hpYC3AGm2rCgJBjHL3nc+A/bhOp9sGMKfi5v0WufsX/sHCFBfNTx2F+zA6qBc/PD0/kLRLjdt8mQ==}
 | 
				
			||||||
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@typescript-eslint/typescript-estree@8.24.0':
 | 
					  '@typescript-eslint/typescript-estree@8.24.0':
 | 
				
			||||||
    resolution: {integrity: sha512-ITjYcP0+8kbsvT9bysygfIfb+hBj6koDsu37JZG7xrCiy3fPJyNmfVtaGsgTUSEuTzcvME5YI5uyL5LD1EV5ZQ==}
 | 
					    resolution: {integrity: sha512-ITjYcP0+8kbsvT9bysygfIfb+hBj6koDsu37JZG7xrCiy3fPJyNmfVtaGsgTUSEuTzcvME5YI5uyL5LD1EV5ZQ==}
 | 
				
			||||||
    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
    peerDependencies:
 | 
					    peerDependencies:
 | 
				
			||||||
      typescript: '>=4.8.4 <5.8.0'
 | 
					      typescript: '>=4.8.4 <5.8.0'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@typescript-eslint/utils@8.24.0':
 | 
					  '@typescript-eslint/typescript-estree@8.29.1':
 | 
				
			||||||
    resolution: {integrity: sha512-07rLuUBElvvEb1ICnafYWr4hk8/U7X9RDCOqd9JcAMtjh/9oRmcfN4yGzbPVirgMR0+HLVHehmu19CWeh7fsmQ==}
 | 
					    resolution: {integrity: sha512-l1enRoSaUkQxOQnbi0KPUtqeZkSiFlqrx9/3ns2rEDhGKfTa+88RmXqedC1zmVTOWrLc2e6DEJrTA51C9iLH5g==}
 | 
				
			||||||
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
 | 
					    peerDependencies:
 | 
				
			||||||
 | 
					      typescript: '>=4.8.4 <5.9.0'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  '@typescript-eslint/utils@8.29.1':
 | 
				
			||||||
 | 
					    resolution: {integrity: sha512-QAkFEbytSaB8wnmB+DflhUPz6CLbFWE2SnSCrRMEa+KnXIzDYbpsn++1HGvnfAsUY44doDXmvRkO5shlM/3UfA==}
 | 
				
			||||||
    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
    peerDependencies:
 | 
					    peerDependencies:
 | 
				
			||||||
      eslint: ^8.57.0 || ^9.0.0
 | 
					      eslint: ^8.57.0 || ^9.0.0
 | 
				
			||||||
      typescript: '>=4.8.4 <5.8.0'
 | 
					      typescript: '>=4.8.4 <5.9.0'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@typescript-eslint/visitor-keys@8.24.0':
 | 
					  '@typescript-eslint/visitor-keys@8.24.0':
 | 
				
			||||||
    resolution: {integrity: sha512-kArLq83QxGLbuHrTMoOEWO+l2MwsNS2TGISEdx8xgqpkbytB07XmlQyQdNDrCc1ecSqx0cnmhGvpX+VBwqqSkg==}
 | 
					    resolution: {integrity: sha512-kArLq83QxGLbuHrTMoOEWO+l2MwsNS2TGISEdx8xgqpkbytB07XmlQyQdNDrCc1ecSqx0cnmhGvpX+VBwqqSkg==}
 | 
				
			||||||
    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  '@typescript-eslint/visitor-keys@8.29.1':
 | 
				
			||||||
 | 
					    resolution: {integrity: sha512-RGLh5CRaUEf02viP5c1Vh1cMGffQscyHe7HPAzGpfmfflFg1wUz2rYxd+OZqwpeypYvZ8UxSxuIpF++fmOzEcg==}
 | 
				
			||||||
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@uppy/companion-client@2.2.2':
 | 
					  '@uppy/companion-client@2.2.2':
 | 
				
			||||||
    resolution: {integrity: sha512-5mTp2iq97/mYSisMaBtFRry6PTgZA6SIL7LePteOV5x0/DxKfrZW3DEiQERJmYpHzy7k8johpm2gHnEKto56Og==}
 | 
					    resolution: {integrity: sha512-5mTp2iq97/mYSisMaBtFRry6PTgZA6SIL7LePteOV5x0/DxKfrZW3DEiQERJmYpHzy7k8johpm2gHnEKto56Og==}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -2682,19 +2693,19 @@ packages:
 | 
				
			|||||||
    engines: {node: '>=6.0'}
 | 
					    engines: {node: '>=6.0'}
 | 
				
			||||||
    hasBin: true
 | 
					    hasBin: true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  eslint-config-prettier@10.0.1:
 | 
					  eslint-config-prettier@10.1.1:
 | 
				
			||||||
    resolution: {integrity: sha512-lZBts941cyJyeaooiKxAtzoPHTN+GbQTJFAIdQbRhA4/8whaAraEh47Whw/ZFfrjNSnlAxqfm9i0XVAEkULjCw==}
 | 
					    resolution: {integrity: sha512-4EQQr6wXwS+ZJSzaR5ZCrYgLxqvUjdXctaEtBqHcbkW944B1NQyO4qpdHQbXBONfwxXdkAY81HH4+LUfrg+zPw==}
 | 
				
			||||||
    hasBin: true
 | 
					    hasBin: true
 | 
				
			||||||
    peerDependencies:
 | 
					    peerDependencies:
 | 
				
			||||||
      eslint: '>=7.0.0'
 | 
					      eslint: '>=7.0.0'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  eslint-plugin-prettier@5.2.3:
 | 
					  eslint-plugin-prettier@5.2.6:
 | 
				
			||||||
    resolution: {integrity: sha512-qJ+y0FfCp/mQYQ/vWQ3s7eUlFEL4PyKfAJxsnYTJ4YT73nsJBWqmEpFryxV9OeUiqmsTsYJ5Y+KDNaeP31wrRw==}
 | 
					    resolution: {integrity: sha512-mUcf7QG2Tjk7H055Jk0lGBjbgDnfrvqjhXh9t2xLMSCjZVcw9Rb1V6sVNXO0th3jgeO7zllWPTNRil3JW94TnQ==}
 | 
				
			||||||
    engines: {node: ^14.18.0 || >=16.0.0}
 | 
					    engines: {node: ^14.18.0 || >=16.0.0}
 | 
				
			||||||
    peerDependencies:
 | 
					    peerDependencies:
 | 
				
			||||||
      '@types/eslint': '>=8.0.0'
 | 
					      '@types/eslint': '>=8.0.0'
 | 
				
			||||||
      eslint: '>=8.0.0'
 | 
					      eslint: '>=8.0.0'
 | 
				
			||||||
      eslint-config-prettier: '*'
 | 
					      eslint-config-prettier: '>= 7.0.0 <10.0.0 || >=10.1.0'
 | 
				
			||||||
      prettier: '>=3.0.0'
 | 
					      prettier: '>=3.0.0'
 | 
				
			||||||
    peerDependenciesMeta:
 | 
					    peerDependenciesMeta:
 | 
				
			||||||
      '@types/eslint':
 | 
					      '@types/eslint':
 | 
				
			||||||
@ -2702,15 +2713,12 @@ packages:
 | 
				
			|||||||
      eslint-config-prettier:
 | 
					      eslint-config-prettier:
 | 
				
			||||||
        optional: true
 | 
					        optional: true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  eslint-plugin-vue@9.32.0:
 | 
					  eslint-plugin-vue@10.0.0:
 | 
				
			||||||
    resolution: {integrity: sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug==}
 | 
					    resolution: {integrity: sha512-XKckedtajqwmaX6u1VnECmZ6xJt+YvlmMzBPZd+/sI3ub2lpYZyFnsyWo7c3nMOQKJQudeyk1lw/JxdgeKT64w==}
 | 
				
			||||||
    engines: {node: ^14.17.0 || >=16.0.0}
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
    peerDependencies:
 | 
					    peerDependencies:
 | 
				
			||||||
      eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
 | 
					      eslint: ^8.57.0 || ^9.0.0
 | 
				
			||||||
 | 
					      vue-eslint-parser: ^10.0.0
 | 
				
			||||||
  eslint-scope@7.2.2:
 | 
					 | 
				
			||||||
    resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
 | 
					 | 
				
			||||||
    engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  eslint-scope@8.3.0:
 | 
					  eslint-scope@8.3.0:
 | 
				
			||||||
    resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
 | 
					    resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
 | 
				
			||||||
@ -2724,8 +2732,8 @@ packages:
 | 
				
			|||||||
    resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
 | 
					    resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
 | 
				
			||||||
    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  eslint@9.23.0:
 | 
					  eslint@9.24.0:
 | 
				
			||||||
    resolution: {integrity: sha512-jV7AbNoFPAY1EkFYpLq5bslU9NLNO8xnEeQXwErNibVryjk67wHVmddTBilc5srIttJDBrB0eMHKZBFbSIABCw==}
 | 
					    resolution: {integrity: sha512-eh/jxIEJyZrvbWRe4XuVclLPDYSYYYgLy5zXGGxD6j8zjSAxFEzI2fL/8xNq6O2yKqVt+eF2YhV+hxjV6UKXwQ==}
 | 
				
			||||||
    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
    hasBin: true
 | 
					    hasBin: true
 | 
				
			||||||
    peerDependencies:
 | 
					    peerDependencies:
 | 
				
			||||||
@ -3002,10 +3010,6 @@ packages:
 | 
				
			|||||||
    resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
 | 
					    resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
 | 
				
			||||||
    engines: {node: '>=4'}
 | 
					    engines: {node: '>=4'}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  globals@13.24.0:
 | 
					 | 
				
			||||||
    resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
 | 
					 | 
				
			||||||
    engines: {node: '>=8'}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  globals@14.0.0:
 | 
					  globals@14.0.0:
 | 
				
			||||||
    resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
 | 
					    resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
 | 
				
			||||||
    engines: {node: '>=18'}
 | 
					    engines: {node: '>=18'}
 | 
				
			||||||
@ -4851,8 +4855,8 @@ packages:
 | 
				
			|||||||
  symbol-tree@3.2.4:
 | 
					  symbol-tree@3.2.4:
 | 
				
			||||||
    resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
 | 
					    resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  synckit@0.9.2:
 | 
					  synckit@0.11.3:
 | 
				
			||||||
    resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==}
 | 
					    resolution: {integrity: sha512-szhWDqNNI9etJUvbZ1/cx1StnZx8yMmFxme48SwR4dty4ioSY50KEZlpv0qAfgc1fpRzuh9hBXEzoCpJ779dLg==}
 | 
				
			||||||
    engines: {node: ^14.18.0 || >=16.0.0}
 | 
					    engines: {node: ^14.18.0 || >=16.0.0}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  table@6.9.0:
 | 
					  table@6.9.0:
 | 
				
			||||||
@ -4953,10 +4957,6 @@ packages:
 | 
				
			|||||||
    resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
 | 
					    resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
 | 
				
			||||||
    engines: {node: '>=4'}
 | 
					    engines: {node: '>=4'}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  type-fest@0.20.2:
 | 
					 | 
				
			||||||
    resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
 | 
					 | 
				
			||||||
    engines: {node: '>=10'}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  type-fest@0.21.3:
 | 
					  type-fest@0.21.3:
 | 
				
			||||||
    resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
 | 
					    resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
 | 
				
			||||||
    engines: {node: '>=10'}
 | 
					    engines: {node: '>=10'}
 | 
				
			||||||
@ -4977,6 +4977,13 @@ packages:
 | 
				
			|||||||
  typeit@8.8.7:
 | 
					  typeit@8.8.7:
 | 
				
			||||||
    resolution: {integrity: sha512-sSVpy+cjeFP6Z+fZqiHzUSShg5yYFeJEt/Qut/bX945+Axyq+Yq+GPOuuk+sofoccSv8nNX/ibOOHkbki2mEpg==}
 | 
					    resolution: {integrity: sha512-sSVpy+cjeFP6Z+fZqiHzUSShg5yYFeJEt/Qut/bX945+Axyq+Yq+GPOuuk+sofoccSv8nNX/ibOOHkbki2mEpg==}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  typescript-eslint@8.29.1:
 | 
				
			||||||
 | 
					    resolution: {integrity: sha512-f8cDkvndhbQMPcysk6CUSGBWV+g1utqdn71P5YKwMumVMOG/5k7cHq0KyG4O52nB0oKS4aN2Tp5+wB4APJGC+w==}
 | 
				
			||||||
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
 | 
					    peerDependencies:
 | 
				
			||||||
 | 
					      eslint: ^8.57.0 || ^9.0.0
 | 
				
			||||||
 | 
					      typescript: '>=4.8.4 <5.9.0'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  typescript@5.7.3:
 | 
					  typescript@5.7.3:
 | 
				
			||||||
    resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
 | 
					    resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
 | 
				
			||||||
    engines: {node: '>=14.17'}
 | 
					    engines: {node: '>=14.17'}
 | 
				
			||||||
@ -5170,11 +5177,11 @@ packages:
 | 
				
			|||||||
      '@vue/composition-api':
 | 
					      '@vue/composition-api':
 | 
				
			||||||
        optional: true
 | 
					        optional: true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  vue-eslint-parser@9.4.3:
 | 
					  vue-eslint-parser@10.1.3:
 | 
				
			||||||
    resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==}
 | 
					    resolution: {integrity: sha512-dbCBnd2e02dYWsXoqX5yKUZlOt+ExIpq7hmHKPb5ZqKcjf++Eo0hMseFTZMLKThrUk61m+Uv6A2YSBve6ZvuDQ==}
 | 
				
			||||||
    engines: {node: ^14.17.0 || >=16.0.0}
 | 
					    engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
 | 
				
			||||||
    peerDependencies:
 | 
					    peerDependencies:
 | 
				
			||||||
      eslint: '>=6.0.0'
 | 
					      eslint: ^8.57.0 || ^9.0.0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  vue-i18n@11.1.1:
 | 
					  vue-i18n@11.1.1:
 | 
				
			||||||
    resolution: {integrity: sha512-0P6DkKy96R4Wh2sIZJEHw8ivnlD1pnB6Ib/eldoF1SUpQutfKZv6aMqZwICS1gW0rwq24ZSXw7y3jW+PRVYqWA==}
 | 
					    resolution: {integrity: sha512-0P6DkKy96R4Wh2sIZJEHw8ivnlD1pnB6Ib/eldoF1SUpQutfKZv6aMqZwICS1gW0rwq24ZSXw7y3jW+PRVYqWA==}
 | 
				
			||||||
@ -5934,14 +5941,14 @@ snapshots:
 | 
				
			|||||||
  '@esbuild/win32-x64@0.24.2':
 | 
					  '@esbuild/win32-x64@0.24.2':
 | 
				
			||||||
    optional: true
 | 
					    optional: true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@eslint-community/eslint-utils@4.4.1(eslint@9.23.0(jiti@2.4.2))':
 | 
					  '@eslint-community/eslint-utils@4.4.1(eslint@9.24.0(jiti@2.4.2))':
 | 
				
			||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      eslint: 9.23.0(jiti@2.4.2)
 | 
					      eslint: 9.24.0(jiti@2.4.2)
 | 
				
			||||||
      eslint-visitor-keys: 3.4.3
 | 
					      eslint-visitor-keys: 3.4.3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@eslint-community/regexpp@4.12.1': {}
 | 
					  '@eslint-community/regexpp@4.12.1': {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@eslint/config-array@0.19.2':
 | 
					  '@eslint/config-array@0.20.0':
 | 
				
			||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      '@eslint/object-schema': 2.1.6
 | 
					      '@eslint/object-schema': 2.1.6
 | 
				
			||||||
      debug: 4.4.0
 | 
					      debug: 4.4.0
 | 
				
			||||||
@ -5969,9 +5976,7 @@ snapshots:
 | 
				
			|||||||
    transitivePeerDependencies:
 | 
					    transitivePeerDependencies:
 | 
				
			||||||
      - supports-color
 | 
					      - supports-color
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@eslint/js@9.20.0': {}
 | 
					  '@eslint/js@9.24.0': {}
 | 
				
			||||||
 | 
					 | 
				
			||||||
  '@eslint/js@9.23.0': {}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@eslint/object-schema@2.1.6': {}
 | 
					  '@eslint/object-schema@2.1.6': {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -6078,9 +6083,9 @@ snapshots:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  '@intlify/shared@12.0.0-alpha.2': {}
 | 
					  '@intlify/shared@12.0.0-alpha.2': {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@intlify/unplugin-vue-i18n@6.0.3(@vue/compiler-dom@3.5.13)(eslint@9.23.0(jiti@2.4.2))(rollup@4.34.6)(typescript@5.7.3)(vue-i18n@11.1.1(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3))':
 | 
					  '@intlify/unplugin-vue-i18n@6.0.3(@vue/compiler-dom@3.5.13)(eslint@9.24.0(jiti@2.4.2))(rollup@4.34.6)(typescript@5.7.3)(vue-i18n@11.1.1(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3))':
 | 
				
			||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      '@eslint-community/eslint-utils': 4.4.1(eslint@9.23.0(jiti@2.4.2))
 | 
					      '@eslint-community/eslint-utils': 4.4.1(eslint@9.24.0(jiti@2.4.2))
 | 
				
			||||||
      '@intlify/bundle-utils': 10.0.0(vue-i18n@11.1.1(vue@3.5.13(typescript@5.7.3)))
 | 
					      '@intlify/bundle-utils': 10.0.0(vue-i18n@11.1.1(vue@3.5.13(typescript@5.7.3)))
 | 
				
			||||||
      '@intlify/shared': 11.1.3
 | 
					      '@intlify/shared': 11.1.3
 | 
				
			||||||
      '@intlify/vue-i18n-extensions': 8.0.0(@intlify/shared@11.1.3)(@vue/compiler-dom@3.5.13)(vue-i18n@11.1.1(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3))
 | 
					      '@intlify/vue-i18n-extensions': 8.0.0(@intlify/shared@11.1.3)(@vue/compiler-dom@3.5.13)(vue-i18n@11.1.1(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3))
 | 
				
			||||||
@ -6471,7 +6476,7 @@ snapshots:
 | 
				
			|||||||
  '@pkgjs/parseargs@0.11.0':
 | 
					  '@pkgjs/parseargs@0.11.0':
 | 
				
			||||||
    optional: true
 | 
					    optional: true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@pkgr/core@0.1.1': {}
 | 
					  '@pkgr/core@0.2.1': {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@popperjs/core@2.11.8': {}
 | 
					  '@popperjs/core@2.11.8': {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -6684,15 +6689,15 @@ snapshots:
 | 
				
			|||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      '@types/yargs-parser': 21.0.3
 | 
					      '@types/yargs-parser': 21.0.3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@typescript-eslint/eslint-plugin@8.24.0(@typescript-eslint/parser@8.24.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.23.0(jiti@2.4.2))(typescript@5.7.3)':
 | 
					  '@typescript-eslint/eslint-plugin@8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.24.0(jiti@2.4.2))(typescript@5.7.3)':
 | 
				
			||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      '@eslint-community/regexpp': 4.12.1
 | 
					      '@eslint-community/regexpp': 4.12.1
 | 
				
			||||||
      '@typescript-eslint/parser': 8.24.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.7.3)
 | 
					      '@typescript-eslint/parser': 8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.7.3)
 | 
				
			||||||
      '@typescript-eslint/scope-manager': 8.24.0
 | 
					      '@typescript-eslint/scope-manager': 8.29.1
 | 
				
			||||||
      '@typescript-eslint/type-utils': 8.24.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.7.3)
 | 
					      '@typescript-eslint/type-utils': 8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.7.3)
 | 
				
			||||||
      '@typescript-eslint/utils': 8.24.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.7.3)
 | 
					      '@typescript-eslint/utils': 8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.7.3)
 | 
				
			||||||
      '@typescript-eslint/visitor-keys': 8.24.0
 | 
					      '@typescript-eslint/visitor-keys': 8.29.1
 | 
				
			||||||
      eslint: 9.23.0(jiti@2.4.2)
 | 
					      eslint: 9.24.0(jiti@2.4.2)
 | 
				
			||||||
      graphemer: 1.4.0
 | 
					      graphemer: 1.4.0
 | 
				
			||||||
      ignore: 5.3.2
 | 
					      ignore: 5.3.2
 | 
				
			||||||
      natural-compare: 1.4.0
 | 
					      natural-compare: 1.4.0
 | 
				
			||||||
@ -6701,14 +6706,14 @@ snapshots:
 | 
				
			|||||||
    transitivePeerDependencies:
 | 
					    transitivePeerDependencies:
 | 
				
			||||||
      - supports-color
 | 
					      - supports-color
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@typescript-eslint/parser@8.24.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.7.3)':
 | 
					  '@typescript-eslint/parser@8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.7.3)':
 | 
				
			||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      '@typescript-eslint/scope-manager': 8.24.0
 | 
					      '@typescript-eslint/scope-manager': 8.29.1
 | 
				
			||||||
      '@typescript-eslint/types': 8.24.0
 | 
					      '@typescript-eslint/types': 8.29.1
 | 
				
			||||||
      '@typescript-eslint/typescript-estree': 8.24.0(typescript@5.7.3)
 | 
					      '@typescript-eslint/typescript-estree': 8.29.1(typescript@5.7.3)
 | 
				
			||||||
      '@typescript-eslint/visitor-keys': 8.24.0
 | 
					      '@typescript-eslint/visitor-keys': 8.29.1
 | 
				
			||||||
      debug: 4.4.0
 | 
					      debug: 4.4.0
 | 
				
			||||||
      eslint: 9.23.0(jiti@2.4.2)
 | 
					      eslint: 9.24.0(jiti@2.4.2)
 | 
				
			||||||
      typescript: 5.7.3
 | 
					      typescript: 5.7.3
 | 
				
			||||||
    transitivePeerDependencies:
 | 
					    transitivePeerDependencies:
 | 
				
			||||||
      - supports-color
 | 
					      - supports-color
 | 
				
			||||||
@ -6718,12 +6723,17 @@ snapshots:
 | 
				
			|||||||
      '@typescript-eslint/types': 8.24.0
 | 
					      '@typescript-eslint/types': 8.24.0
 | 
				
			||||||
      '@typescript-eslint/visitor-keys': 8.24.0
 | 
					      '@typescript-eslint/visitor-keys': 8.24.0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@typescript-eslint/type-utils@8.24.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.7.3)':
 | 
					  '@typescript-eslint/scope-manager@8.29.1':
 | 
				
			||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      '@typescript-eslint/typescript-estree': 8.24.0(typescript@5.7.3)
 | 
					      '@typescript-eslint/types': 8.29.1
 | 
				
			||||||
      '@typescript-eslint/utils': 8.24.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.7.3)
 | 
					      '@typescript-eslint/visitor-keys': 8.29.1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  '@typescript-eslint/type-utils@8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.7.3)':
 | 
				
			||||||
 | 
					    dependencies:
 | 
				
			||||||
 | 
					      '@typescript-eslint/typescript-estree': 8.29.1(typescript@5.7.3)
 | 
				
			||||||
 | 
					      '@typescript-eslint/utils': 8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.7.3)
 | 
				
			||||||
      debug: 4.4.0
 | 
					      debug: 4.4.0
 | 
				
			||||||
      eslint: 9.23.0(jiti@2.4.2)
 | 
					      eslint: 9.24.0(jiti@2.4.2)
 | 
				
			||||||
      ts-api-utils: 2.0.1(typescript@5.7.3)
 | 
					      ts-api-utils: 2.0.1(typescript@5.7.3)
 | 
				
			||||||
      typescript: 5.7.3
 | 
					      typescript: 5.7.3
 | 
				
			||||||
    transitivePeerDependencies:
 | 
					    transitivePeerDependencies:
 | 
				
			||||||
@ -6731,6 +6741,8 @@ snapshots:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  '@typescript-eslint/types@8.24.0': {}
 | 
					  '@typescript-eslint/types@8.24.0': {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  '@typescript-eslint/types@8.29.1': {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@typescript-eslint/typescript-estree@8.24.0(typescript@5.7.3)':
 | 
					  '@typescript-eslint/typescript-estree@8.24.0(typescript@5.7.3)':
 | 
				
			||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      '@typescript-eslint/types': 8.24.0
 | 
					      '@typescript-eslint/types': 8.24.0
 | 
				
			||||||
@ -6745,13 +6757,27 @@ snapshots:
 | 
				
			|||||||
    transitivePeerDependencies:
 | 
					    transitivePeerDependencies:
 | 
				
			||||||
      - supports-color
 | 
					      - supports-color
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@typescript-eslint/utils@8.24.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.7.3)':
 | 
					  '@typescript-eslint/typescript-estree@8.29.1(typescript@5.7.3)':
 | 
				
			||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      '@eslint-community/eslint-utils': 4.4.1(eslint@9.23.0(jiti@2.4.2))
 | 
					      '@typescript-eslint/types': 8.29.1
 | 
				
			||||||
      '@typescript-eslint/scope-manager': 8.24.0
 | 
					      '@typescript-eslint/visitor-keys': 8.29.1
 | 
				
			||||||
      '@typescript-eslint/types': 8.24.0
 | 
					      debug: 4.4.0
 | 
				
			||||||
      '@typescript-eslint/typescript-estree': 8.24.0(typescript@5.7.3)
 | 
					      fast-glob: 3.3.3
 | 
				
			||||||
      eslint: 9.23.0(jiti@2.4.2)
 | 
					      is-glob: 4.0.3
 | 
				
			||||||
 | 
					      minimatch: 9.0.5
 | 
				
			||||||
 | 
					      semver: 7.7.1
 | 
				
			||||||
 | 
					      ts-api-utils: 2.0.1(typescript@5.7.3)
 | 
				
			||||||
 | 
					      typescript: 5.7.3
 | 
				
			||||||
 | 
					    transitivePeerDependencies:
 | 
				
			||||||
 | 
					      - supports-color
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  '@typescript-eslint/utils@8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.7.3)':
 | 
				
			||||||
 | 
					    dependencies:
 | 
				
			||||||
 | 
					      '@eslint-community/eslint-utils': 4.4.1(eslint@9.24.0(jiti@2.4.2))
 | 
				
			||||||
 | 
					      '@typescript-eslint/scope-manager': 8.29.1
 | 
				
			||||||
 | 
					      '@typescript-eslint/types': 8.29.1
 | 
				
			||||||
 | 
					      '@typescript-eslint/typescript-estree': 8.29.1(typescript@5.7.3)
 | 
				
			||||||
 | 
					      eslint: 9.24.0(jiti@2.4.2)
 | 
				
			||||||
      typescript: 5.7.3
 | 
					      typescript: 5.7.3
 | 
				
			||||||
    transitivePeerDependencies:
 | 
					    transitivePeerDependencies:
 | 
				
			||||||
      - supports-color
 | 
					      - supports-color
 | 
				
			||||||
@ -6761,6 +6787,11 @@ snapshots:
 | 
				
			|||||||
      '@typescript-eslint/types': 8.24.0
 | 
					      '@typescript-eslint/types': 8.24.0
 | 
				
			||||||
      eslint-visitor-keys: 4.2.0
 | 
					      eslint-visitor-keys: 4.2.0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  '@typescript-eslint/visitor-keys@8.29.1':
 | 
				
			||||||
 | 
					    dependencies:
 | 
				
			||||||
 | 
					      '@typescript-eslint/types': 8.29.1
 | 
				
			||||||
 | 
					      eslint-visitor-keys: 4.2.0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  '@uppy/companion-client@2.2.2':
 | 
					  '@uppy/companion-client@2.2.2':
 | 
				
			||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      '@uppy/utils': 4.1.3
 | 
					      '@uppy/utils': 4.1.3
 | 
				
			||||||
@ -8047,37 +8078,29 @@ snapshots:
 | 
				
			|||||||
    optionalDependencies:
 | 
					    optionalDependencies:
 | 
				
			||||||
      source-map: 0.6.1
 | 
					      source-map: 0.6.1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  eslint-config-prettier@10.0.1(eslint@9.23.0(jiti@2.4.2)):
 | 
					  eslint-config-prettier@10.1.1(eslint@9.24.0(jiti@2.4.2)):
 | 
				
			||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      eslint: 9.23.0(jiti@2.4.2)
 | 
					      eslint: 9.24.0(jiti@2.4.2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  eslint-plugin-prettier@5.2.3(eslint-config-prettier@10.0.1(eslint@9.23.0(jiti@2.4.2)))(eslint@9.23.0(jiti@2.4.2))(prettier@3.5.1):
 | 
					  eslint-plugin-prettier@5.2.6(eslint-config-prettier@10.1.1(eslint@9.24.0(jiti@2.4.2)))(eslint@9.24.0(jiti@2.4.2))(prettier@3.5.1):
 | 
				
			||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      eslint: 9.23.0(jiti@2.4.2)
 | 
					      eslint: 9.24.0(jiti@2.4.2)
 | 
				
			||||||
      prettier: 3.5.1
 | 
					      prettier: 3.5.1
 | 
				
			||||||
      prettier-linter-helpers: 1.0.0
 | 
					      prettier-linter-helpers: 1.0.0
 | 
				
			||||||
      synckit: 0.9.2
 | 
					      synckit: 0.11.3
 | 
				
			||||||
    optionalDependencies:
 | 
					    optionalDependencies:
 | 
				
			||||||
      eslint-config-prettier: 10.0.1(eslint@9.23.0(jiti@2.4.2))
 | 
					      eslint-config-prettier: 10.1.1(eslint@9.24.0(jiti@2.4.2))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  eslint-plugin-vue@9.32.0(eslint@9.23.0(jiti@2.4.2)):
 | 
					  eslint-plugin-vue@10.0.0(eslint@9.24.0(jiti@2.4.2))(vue-eslint-parser@10.1.3(eslint@9.24.0(jiti@2.4.2))):
 | 
				
			||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      '@eslint-community/eslint-utils': 4.4.1(eslint@9.23.0(jiti@2.4.2))
 | 
					      '@eslint-community/eslint-utils': 4.4.1(eslint@9.24.0(jiti@2.4.2))
 | 
				
			||||||
      eslint: 9.23.0(jiti@2.4.2)
 | 
					      eslint: 9.24.0(jiti@2.4.2)
 | 
				
			||||||
      globals: 13.24.0
 | 
					 | 
				
			||||||
      natural-compare: 1.4.0
 | 
					      natural-compare: 1.4.0
 | 
				
			||||||
      nth-check: 2.1.1
 | 
					      nth-check: 2.1.1
 | 
				
			||||||
      postcss-selector-parser: 6.1.2
 | 
					      postcss-selector-parser: 6.1.2
 | 
				
			||||||
      semver: 7.7.1
 | 
					      semver: 7.7.1
 | 
				
			||||||
      vue-eslint-parser: 9.4.3(eslint@9.23.0(jiti@2.4.2))
 | 
					      vue-eslint-parser: 10.1.3(eslint@9.24.0(jiti@2.4.2))
 | 
				
			||||||
      xml-name-validator: 4.0.0
 | 
					      xml-name-validator: 4.0.0
 | 
				
			||||||
    transitivePeerDependencies:
 | 
					 | 
				
			||||||
      - supports-color
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  eslint-scope@7.2.2:
 | 
					 | 
				
			||||||
    dependencies:
 | 
					 | 
				
			||||||
      esrecurse: 4.3.0
 | 
					 | 
				
			||||||
      estraverse: 5.3.0
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  eslint-scope@8.3.0:
 | 
					  eslint-scope@8.3.0:
 | 
				
			||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
@ -8088,15 +8111,15 @@ snapshots:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  eslint-visitor-keys@4.2.0: {}
 | 
					  eslint-visitor-keys@4.2.0: {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  eslint@9.23.0(jiti@2.4.2):
 | 
					  eslint@9.24.0(jiti@2.4.2):
 | 
				
			||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      '@eslint-community/eslint-utils': 4.4.1(eslint@9.23.0(jiti@2.4.2))
 | 
					      '@eslint-community/eslint-utils': 4.4.1(eslint@9.24.0(jiti@2.4.2))
 | 
				
			||||||
      '@eslint-community/regexpp': 4.12.1
 | 
					      '@eslint-community/regexpp': 4.12.1
 | 
				
			||||||
      '@eslint/config-array': 0.19.2
 | 
					      '@eslint/config-array': 0.20.0
 | 
				
			||||||
      '@eslint/config-helpers': 0.2.0
 | 
					      '@eslint/config-helpers': 0.2.0
 | 
				
			||||||
      '@eslint/core': 0.12.0
 | 
					      '@eslint/core': 0.12.0
 | 
				
			||||||
      '@eslint/eslintrc': 3.3.1
 | 
					      '@eslint/eslintrc': 3.3.1
 | 
				
			||||||
      '@eslint/js': 9.23.0
 | 
					      '@eslint/js': 9.24.0
 | 
				
			||||||
      '@eslint/plugin-kit': 0.2.7
 | 
					      '@eslint/plugin-kit': 0.2.7
 | 
				
			||||||
      '@humanfs/node': 0.16.6
 | 
					      '@humanfs/node': 0.16.6
 | 
				
			||||||
      '@humanwhocodes/module-importer': 1.0.1
 | 
					      '@humanwhocodes/module-importer': 1.0.1
 | 
				
			||||||
@ -8436,10 +8459,6 @@ snapshots:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  globals@11.12.0: {}
 | 
					  globals@11.12.0: {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  globals@13.24.0:
 | 
					 | 
				
			||||||
    dependencies:
 | 
					 | 
				
			||||||
      type-fest: 0.20.2
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  globals@14.0.0: {}
 | 
					  globals@14.0.0: {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  globals@15.15.0: {}
 | 
					  globals@15.15.0: {}
 | 
				
			||||||
@ -10462,9 +10481,9 @@ snapshots:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  symbol-tree@3.2.4: {}
 | 
					  symbol-tree@3.2.4: {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  synckit@0.9.2:
 | 
					  synckit@0.11.3:
 | 
				
			||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      '@pkgr/core': 0.1.1
 | 
					      '@pkgr/core': 0.2.1
 | 
				
			||||||
      tslib: 2.8.1
 | 
					      tslib: 2.8.1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  table@6.9.0:
 | 
					  table@6.9.0:
 | 
				
			||||||
@ -10592,8 +10611,6 @@ snapshots:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  type-detect@4.0.8: {}
 | 
					  type-detect@4.0.8: {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  type-fest@0.20.2: {}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  type-fest@0.21.3: {}
 | 
					  type-fest@0.21.3: {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  type-fest@4.34.1: {}
 | 
					  type-fest@4.34.1: {}
 | 
				
			||||||
@ -10610,6 +10627,16 @@ snapshots:
 | 
				
			|||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      '@types/web-animations-js': 2.2.16
 | 
					      '@types/web-animations-js': 2.2.16
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  typescript-eslint@8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.7.3):
 | 
				
			||||||
 | 
					    dependencies:
 | 
				
			||||||
 | 
					      '@typescript-eslint/eslint-plugin': 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.24.0(jiti@2.4.2))(typescript@5.7.3)
 | 
				
			||||||
 | 
					      '@typescript-eslint/parser': 8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.7.3)
 | 
				
			||||||
 | 
					      '@typescript-eslint/utils': 8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.7.3)
 | 
				
			||||||
 | 
					      eslint: 9.24.0(jiti@2.4.2)
 | 
				
			||||||
 | 
					      typescript: 5.7.3
 | 
				
			||||||
 | 
					    transitivePeerDependencies:
 | 
				
			||||||
 | 
					      - supports-color
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  typescript@5.7.3: {}
 | 
					  typescript@5.7.3: {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  ufo@1.5.4: {}
 | 
					  ufo@1.5.4: {}
 | 
				
			||||||
@ -10799,13 +10826,13 @@ snapshots:
 | 
				
			|||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      vue: 3.5.13(typescript@5.7.3)
 | 
					      vue: 3.5.13(typescript@5.7.3)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  vue-eslint-parser@9.4.3(eslint@9.23.0(jiti@2.4.2)):
 | 
					  vue-eslint-parser@10.1.3(eslint@9.24.0(jiti@2.4.2)):
 | 
				
			||||||
    dependencies:
 | 
					    dependencies:
 | 
				
			||||||
      debug: 4.4.0
 | 
					      debug: 4.4.0
 | 
				
			||||||
      eslint: 9.23.0(jiti@2.4.2)
 | 
					      eslint: 9.24.0(jiti@2.4.2)
 | 
				
			||||||
      eslint-scope: 7.2.2
 | 
					      eslint-scope: 8.3.0
 | 
				
			||||||
      eslint-visitor-keys: 3.4.3
 | 
					      eslint-visitor-keys: 4.2.0
 | 
				
			||||||
      espree: 9.6.1
 | 
					      espree: 10.3.0
 | 
				
			||||||
      esquery: 1.6.0
 | 
					      esquery: 1.6.0
 | 
				
			||||||
      lodash: 4.17.21
 | 
					      lodash: 4.17.21
 | 
				
			||||||
      semver: 7.7.1
 | 
					      semver: 7.7.1
 | 
				
			||||||
 | 
				
			|||||||
@ -3,7 +3,7 @@ import { ref, unref, onMounted } from "vue";
 | 
				
			|||||||
import { LogicFlow } from "@logicflow/core";
 | 
					import { LogicFlow } from "@logicflow/core";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
interface Props {
 | 
					interface Props {
 | 
				
			||||||
  lf: LogicFlow;
 | 
					  lf?: LogicFlow;
 | 
				
			||||||
  catTurboData?: boolean;
 | 
					  catTurboData?: boolean;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -9,8 +9,8 @@ type nodeListType = {
 | 
				
			|||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
interface Props {
 | 
					interface Props {
 | 
				
			||||||
  lf: LogicFlow;
 | 
					  lf?: LogicFlow;
 | 
				
			||||||
  nodeList: Array<nodeListType>;
 | 
					  nodeList?: Array<nodeListType>;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const props = withDefaults(defineProps<Props>(), {
 | 
					const props = withDefaults(defineProps<Props>(), {
 | 
				
			||||||
 | 
				
			|||||||
@ -60,12 +60,15 @@ export function copyObj() {
 | 
				
			|||||||
    copyIsArray,
 | 
					    copyIsArray,
 | 
				
			||||||
    clone,
 | 
					    clone,
 | 
				
			||||||
    i = 1,
 | 
					    i = 1,
 | 
				
			||||||
 | 
					    // eslint-disable-next-line prefer-rest-params
 | 
				
			||||||
    target = arguments[0] || {}, // 使用||运算符,排除隐式强制类型转换为false的数据类型
 | 
					    target = arguments[0] || {}, // 使用||运算符,排除隐式强制类型转换为false的数据类型
 | 
				
			||||||
    deep = false,
 | 
					    deep = false,
 | 
				
			||||||
 | 
					    // eslint-disable-next-line prefer-const
 | 
				
			||||||
    len = arguments.length;
 | 
					    len = arguments.length;
 | 
				
			||||||
  if (typeof target === "boolean") {
 | 
					  if (typeof target === "boolean") {
 | 
				
			||||||
    deep = target;
 | 
					    deep = target;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // eslint-disable-next-line prefer-rest-params
 | 
				
			||||||
    target = arguments[1] || {};
 | 
					    target = arguments[1] || {};
 | 
				
			||||||
    i++;
 | 
					    i++;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
@ -79,6 +82,7 @@ export function copyObj() {
 | 
				
			|||||||
  for (; i < len; i++) {
 | 
					  for (; i < len; i++) {
 | 
				
			||||||
    //所以如果源对象中数据类型为Undefined或Null那么就会跳过本次循环,接着循环下一个源对象
 | 
					    //所以如果源对象中数据类型为Undefined或Null那么就会跳过本次循环,接着循环下一个源对象
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // eslint-disable-next-line prefer-rest-params
 | 
				
			||||||
    if ((options = arguments[i]) != null) {
 | 
					    if ((options = arguments[i]) != null) {
 | 
				
			||||||
      // 如果遇到源对象的数据类型为Boolean, Number for in循环会被跳过,不执行for in循环// src用于判断target对象是否存在name属性
 | 
					      // 如果遇到源对象的数据类型为Boolean, Number for in循环会被跳过,不执行for in循环// src用于判断target对象是否存在name属性
 | 
				
			||||||
      for (name in options) {
 | 
					      for (name in options) {
 | 
				
			||||||
 | 
				
			|||||||
@ -32,8 +32,8 @@ const calculate = (
 | 
				
			|||||||
  const offset = el.getBoundingClientRect();
 | 
					  const offset = el.getBoundingClientRect();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // 获取点击位置距离 el 的垂直和水平距离
 | 
					  // 获取点击位置距离 el 的垂直和水平距离
 | 
				
			||||||
  let localX = e.clientX - offset.left;
 | 
					  const localX = e.clientX - offset.left;
 | 
				
			||||||
  let localY = e.clientY - offset.top;
 | 
					  const localY = e.clientY - offset.top;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  let radius = 0;
 | 
					  let radius = 0;
 | 
				
			||||||
  let scale = 0.3;
 | 
					  let scale = 0.3;
 | 
				
			||||||
 | 
				
			|||||||
@ -6,7 +6,7 @@ import EnterOutlined from "@/assets/svg/enter_outlined.svg?component";
 | 
				
			|||||||
import ArrowUpLine from "~icons/ri/arrow-up-line";
 | 
					import ArrowUpLine from "~icons/ri/arrow-up-line";
 | 
				
			||||||
import ArrowDownLine from "~icons/ri/arrow-down-line";
 | 
					import ArrowDownLine from "~icons/ri/arrow-down-line";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
withDefaults(defineProps<{ total: number }>(), {
 | 
					withDefaults(defineProps<{ total?: number }>(), {
 | 
				
			||||||
  total: 0
 | 
					  total: 0
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -7,7 +7,7 @@ import { useNav } from "@/layout/hooks/useNav";
 | 
				
			|||||||
import ArrowLeft from "~icons/ri/arrow-left-double-fill";
 | 
					import ArrowLeft from "~icons/ri/arrow-left-double-fill";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
interface Props {
 | 
					interface Props {
 | 
				
			||||||
  isActive: boolean;
 | 
					  isActive?: boolean;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
withDefaults(defineProps<Props>(), {
 | 
					withDefaults(defineProps<Props>(), {
 | 
				
			||||||
 | 
				
			|||||||
@ -7,7 +7,7 @@ import { useNav } from "@/layout/hooks/useNav";
 | 
				
			|||||||
import MenuFold from "~icons/ri/menu-fold-fill";
 | 
					import MenuFold from "~icons/ri/menu-fold-fill";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
interface Props {
 | 
					interface Props {
 | 
				
			||||||
  isActive: boolean;
 | 
					  isActive?: boolean;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
withDefaults(defineProps<Props>(), {
 | 
					withDefaults(defineProps<Props>(), {
 | 
				
			||||||
 | 
				
			|||||||
@ -4,7 +4,7 @@ import MenuFold from "~icons/ri/menu-fold-fill";
 | 
				
			|||||||
import MenuUnfold from "~icons/ri/menu-unfold-fill";
 | 
					import MenuUnfold from "~icons/ri/menu-unfold-fill";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
interface Props {
 | 
					interface Props {
 | 
				
			||||||
  isActive: boolean;
 | 
					  isActive?: boolean;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
withDefaults(defineProps<Props>(), {
 | 
					withDefaults(defineProps<Props>(), {
 | 
				
			||||||
 | 
				
			|||||||
@ -10,7 +10,7 @@ import zhLocale from "element-plus/es/locale/lang/zh-cn";
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
const siphonI18n = (function () {
 | 
					const siphonI18n = (function () {
 | 
				
			||||||
  // 仅初始化一次国际化配置
 | 
					  // 仅初始化一次国际化配置
 | 
				
			||||||
  let cache = Object.fromEntries(
 | 
					  const cache = Object.fromEntries(
 | 
				
			||||||
    Object.entries(
 | 
					    Object.entries(
 | 
				
			||||||
      import.meta.glob("../../locales/*.y(a)?ml", { eager: true })
 | 
					      import.meta.glob("../../locales/*.y(a)?ml", { eager: true })
 | 
				
			||||||
    ).map(([key, value]: any) => {
 | 
					    ).map(([key, value]: any) => {
 | 
				
			||||||
 | 
				
			|||||||
@ -140,8 +140,10 @@ Print.prototype = {
 | 
				
			|||||||
      "position:absolute;width:0;height:0;top:-10px;left:-10px;"
 | 
					      "position:absolute;width:0;height:0;top:-10px;left:-10px;"
 | 
				
			||||||
    );
 | 
					    );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // eslint-disable-next-line prefer-const
 | 
				
			||||||
    w = f.contentWindow || f.contentDocument;
 | 
					    w = f.contentWindow || f.contentDocument;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // eslint-disable-next-line prefer-const
 | 
				
			||||||
    doc = f.contentDocument || f.contentWindow.document;
 | 
					    doc = f.contentDocument || f.contentWindow.document;
 | 
				
			||||||
    doc.open();
 | 
					    doc.open();
 | 
				
			||||||
    doc.write(content);
 | 
					    doc.write(content);
 | 
				
			||||||
 | 
				
			|||||||
@ -3,7 +3,7 @@ import { ref } from "vue";
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// 声明 props 类型
 | 
					// 声明 props 类型
 | 
				
			||||||
export interface FormProps {
 | 
					export interface FormProps {
 | 
				
			||||||
  formInline: {
 | 
					  formInline?: {
 | 
				
			||||||
    user: string;
 | 
					    user: string;
 | 
				
			||||||
    region: string;
 | 
					    region: string;
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
 | 
				
			|||||||
@ -3,7 +3,7 @@ import { useVModel } from "@vueuse/core";
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// 声明 props 类型
 | 
					// 声明 props 类型
 | 
				
			||||||
export interface FormProps {
 | 
					export interface FormProps {
 | 
				
			||||||
  data: string;
 | 
					  data?: string;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// 声明 props 默认值
 | 
					// 声明 props 默认值
 | 
				
			||||||
 | 
				
			|||||||
@ -3,7 +3,7 @@ import { ref } from "vue";
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// 声明 props 类型
 | 
					// 声明 props 类型
 | 
				
			||||||
export interface FormProps {
 | 
					export interface FormProps {
 | 
				
			||||||
  formInline: {
 | 
					  formInline?: {
 | 
				
			||||||
    user: string;
 | 
					    user: string;
 | 
				
			||||||
    region: string;
 | 
					    region: string;
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
 | 
				
			|||||||
@ -3,7 +3,7 @@ import { useVModel } from "@vueuse/core";
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// 声明 props 类型
 | 
					// 声明 props 类型
 | 
				
			||||||
export interface FormProps {
 | 
					export interface FormProps {
 | 
				
			||||||
  data: string;
 | 
					  data?: string;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// 声明 props 默认值
 | 
					// 声明 props 默认值
 | 
				
			||||||
 | 
				
			|||||||
@ -73,7 +73,7 @@ export function useColumns(selectRef: Ref, formRef: Ref, tableRef: Ref) {
 | 
				
			|||||||
  const onSearch = () => {
 | 
					  const onSearch = () => {
 | 
				
			||||||
    tableData.value = cloneTableData;
 | 
					    tableData.value = cloneTableData;
 | 
				
			||||||
    if (!isAllEmpty(searchForm.sexValue)) {
 | 
					    if (!isAllEmpty(searchForm.sexValue)) {
 | 
				
			||||||
      let sex = sexOptions
 | 
					      const sex = sexOptions
 | 
				
			||||||
        .map(sex => sex.value === Number(searchForm.sexValue) && sex.label)
 | 
					        .map(sex => sex.value === Number(searchForm.sexValue) && sex.label)
 | 
				
			||||||
        .filter(Boolean)[0];
 | 
					        .filter(Boolean)[0];
 | 
				
			||||||
      tableData.value = tableData.value.filter(data => data.sex === sex);
 | 
					      tableData.value = tableData.value.filter(data => data.sex === sex);
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										2
									
								
								types/index.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								types/index.d.ts
									
									
									
									
										vendored
									
									
								
							@ -75,8 +75,6 @@ interface ComponentElRef<T extends HTMLElement = HTMLDivElement> {
 | 
				
			|||||||
  $el: T;
 | 
					  $el: T;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
 | 
					 | 
				
			||||||
function parseInt(s: string | number, radix?: number): number;
 | 
					function parseInt(s: string | number, radix?: number): number;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
 | 
					 | 
				
			||||||
function parseFloat(string: string | number): number;
 | 
					function parseFloat(string: string | number): number;
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										2
									
								
								types/router.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								types/router.d.ts
									
									
									
									
										vendored
									
									
								
							@ -104,6 +104,6 @@ declare global {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// https://router.vuejs.org/zh/guide/advanced/meta.html#typescript
 | 
					// https://router.vuejs.org/zh/guide/advanced/meta.html#typescript
 | 
				
			||||||
declare module "vue-router" {
 | 
					declare module "vue-router" {
 | 
				
			||||||
  // eslint-disable-next-line @typescript-eslint/no-empty-object-type
 | 
					  // eslint-disable-next-line
 | 
				
			||||||
  interface RouteMeta extends CustomizeRouteMeta {}
 | 
					  interface RouteMeta extends CustomizeRouteMeta {}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										4
									
								
								types/shims-tsx.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								types/shims-tsx.d.ts
									
									
									
									
										vendored
									
									
								
							@ -1,4 +1,4 @@
 | 
				
			|||||||
import Vue, { VNode } from "vue";
 | 
					import type Vue, { type VNode } from "vue";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
declare module "*.tsx" {
 | 
					declare module "*.tsx" {
 | 
				
			||||||
  import Vue from "compatible-vue";
 | 
					  import Vue from "compatible-vue";
 | 
				
			||||||
@ -7,7 +7,9 @@ declare module "*.tsx" {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
declare global {
 | 
					declare global {
 | 
				
			||||||
  namespace JSX {
 | 
					  namespace JSX {
 | 
				
			||||||
 | 
					    // eslint-disable-next-line
 | 
				
			||||||
    interface Element extends VNode {}
 | 
					    interface Element extends VNode {}
 | 
				
			||||||
 | 
					    // eslint-disable-next-line
 | 
				
			||||||
    interface ElementClass extends Vue {}
 | 
					    interface ElementClass extends Vue {}
 | 
				
			||||||
    interface ElementAttributesProperty {
 | 
					    interface ElementAttributesProperty {
 | 
				
			||||||
      $props: any;
 | 
					      $props: any;
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										1
									
								
								types/shims-vue.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								types/shims-vue.d.ts
									
									
									
									
										vendored
									
									
								
							@ -1,5 +1,6 @@
 | 
				
			|||||||
declare module "*.vue" {
 | 
					declare module "*.vue" {
 | 
				
			||||||
  import type { DefineComponent } from "vue";
 | 
					  import type { DefineComponent } from "vue";
 | 
				
			||||||
 | 
					  // eslint-disable-next-line
 | 
				
			||||||
  const component: DefineComponent<{}, {}, any>;
 | 
					  const component: DefineComponent<{}, {}, any>;
 | 
				
			||||||
  export default component;
 | 
					  export default component;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user