Commit 27c6f6909169aa0532b606c110ca0cbdd2ebea41

Authored by vben
1 parent 57615038

chore: useErrorHandle default hidden

package.json
... ... @@ -26,9 +26,9 @@
26 26 },
27 27 "dependencies": {
28 28 "@iconify/iconify": "^2.0.0-rc.6",
29   - "@vueuse/core": "^4.1.0",
  29 + "@vueuse/core": "^4.1.1",
30 30 "ant-design-vue": "2.0.0",
31   - "apexcharts": "^3.24.0",
  31 + "apexcharts": "^3.25.0",
32 32 "axios": "^0.21.1",
33 33 "crypto-es": "^1.2.7",
34 34 "echarts": "^4.9.0",
... ... @@ -66,9 +66,9 @@
66 66 "@types/sortablejs": "^1.10.6",
67 67 "@types/yargs": "^16.0.0",
68 68 "@types/zxcvbn": "^4.4.0",
69   - "@typescript-eslint/eslint-plugin": "^4.15.0",
70   - "@typescript-eslint/parser": "^4.15.0",
71   - "@vitejs/plugin-legacy": "^1.3.0",
  69 + "@typescript-eslint/eslint-plugin": "^4.15.1",
  70 + "@typescript-eslint/parser": "^4.15.1",
  71 + "@vitejs/plugin-legacy": "^1.3.1",
72 72 "@vitejs/plugin-vue": "^1.1.4",
73 73 "@vitejs/plugin-vue-jsx": "^1.1.0",
74 74 "@vue/compiler-sfc": "^3.0.5",
... ... @@ -79,10 +79,10 @@
79 79 "conventional-changelog-cli": "^2.1.1",
80 80 "cross-env": "^7.0.3",
81 81 "dotenv": "^8.2.0",
82   - "eslint": "^7.19.0",
  82 + "eslint": "^7.20.0",
83 83 "eslint-config-prettier": "^7.2.0",
84 84 "eslint-plugin-prettier": "^3.3.1",
85   - "eslint-plugin-vue": "^7.5.0",
  85 + "eslint-plugin-vue": "^7.6.0",
86 86 "esno": "^0.4.3",
87 87 "fs-extra": "^9.1.0",
88 88 "http-server": "^0.12.3",
... ... @@ -99,7 +99,7 @@
99 99 "stylelint-order": "^4.1.0",
100 100 "ts-node": "^9.1.1",
101 101 "typescript": "^4.1.5",
102   - "vite": "2.0.0-beta.69",
  102 + "vite": "2.0.0-beta.70",
103 103 "vite-plugin-compression": "^0.2.1",
104 104 "vite-plugin-html": "^2.0.0",
105 105 "vite-plugin-imagemin": "^0.2.6",
... ... @@ -108,7 +108,7 @@
108 108 "vite-plugin-pwa": "^0.4.6",
109 109 "vite-plugin-style-import": "^0.7.2",
110 110 "vite-plugin-theme": "^0.4.3",
111   - "vue-eslint-parser": "^7.4.1",
  111 + "vue-eslint-parser": "^7.5.0",
112 112 "yargs": "^16.2.0"
113 113 },
114 114 "resolutions": {
... ...
src/layouts/default/header/components/ErrorAction.vue
... ... @@ -6,22 +6,24 @@
6 6 @click="handleToErrorList"
7 7 >
8 8 <Badge :count="getCount" :offset="[0, 10]" dot :overflowCount="99">
9   - <BugOutlined />
  9 + <Icon icon="ion:bug-outline" />
10 10 </Badge>
11 11 </Tooltip>
12 12 </template>
13 13 <script lang="ts">
14 14 import { defineComponent, computed } from 'vue';
15 15 import { Tooltip, Badge } from 'ant-design-vue';
  16 + import Icon from '/@/components/Icon';
  17 +
16 18 import { useI18n } from '/@/hooks/web/useI18n';
17   - import { BugOutlined } from '@ant-design/icons-vue';
18 19 import { errorStore } from '/@/store/modules/error';
19 20 import { PageEnum } from '/@/enums/pageEnum';
  21 +
20 22 import { useRouter } from 'vue-router';
21 23  
22 24 export default defineComponent({
23 25 name: 'ErrorAction',
24   - components: { BugOutlined, Tooltip, Badge },
  26 + components: { Icon, Tooltip, Badge },
25 27  
26 28 setup() {
27 29 const { t } = useI18n();
... ...
src/layouts/default/header/components/user-dropdown/DropMenuItem.vue
... ... @@ -7,8 +7,7 @@
7 7 </MenuItem>
8 8 </template>
9 9 <script lang="ts">
10   - // components
11   - import { Menu } from 'ant-design-vue';
  10 + import { Menu, Badge } from 'ant-design-vue';
12 11  
13 12 import { defineComponent } from 'vue';
14 13  
... ... @@ -17,7 +16,7 @@
17 16  
18 17 export default defineComponent({
19 18 name: 'DropdownMenuItem',
20   - components: { MenuItem: Menu.Item, Icon },
  19 + components: { MenuItem: Menu.Item, Badge, Icon },
21 20 props: {
22 21 key: propTypes.string,
23 22 text: propTypes.string,
... ...
src/layouts/default/header/components/user-dropdown/index.vue
... ... @@ -24,7 +24,7 @@
24 24 <MenuItem
25 25 key="loginOut"
26 26 :text="t('layout.header.dropdownItemLoginOut')"
27   - icon="ion:exit-outline"
  27 + icon="ion:power-outline"
28 28 />
29 29 </Menu>
30 30 </template>
... ...
src/settings/projectSetting.ts
... ... @@ -4,7 +4,6 @@ import { MenuTypeEnum, MenuModeEnum, TriggerEnum, MixSidebarTriggerEnum } from &#39;
4 4 import { CacheTypeEnum } from '/@/enums/cacheEnum';
5 5 import { ContentEnum, PermissionModeEnum, ThemeEnum, RouterTransitionEnum } from '/@/enums/appEnum';
6 6 import { primaryColor, themeMode } from '../../build/config/themeConfig';
7   -import { isProdMode } from '/@/utils/env';
8 7  
9 8 // ! You need to clear the browser cache after the change
10 9 const setting: ProjectConfig = {
... ... @@ -161,7 +160,7 @@ const setting: ProjectConfig = {
161 160 showBreadCrumbIcon: false,
162 161  
163 162 // Use error-handler-plugin
164   - useErrorHandle: isProdMode(),
  163 + useErrorHandle: false,
165 164  
166 165 // Whether to open back to top
167 166 useOpenBackTop: true,
... ...
src/types/window.d.ts
... ... @@ -4,6 +4,5 @@ declare global {
4 4 declare interface Window {
5 5 // Global vue app instance
6 6 __APP__: App<Element>;
7   - __VERSION__: string;
8 7 }
9 8 }
... ...
vite.config.ts
... ... @@ -9,8 +9,6 @@ import { wrapperEnv } from &#39;./build/utils&#39;;
9 9 import { createVitePlugins } from './build/vite/plugin';
10 10 import { OUTPUT_DIR } from './build/constant';
11 11  
12   -const pkg = require('./package.json');
13   -
14 12 function pathResolve(dir: string) {
15 13 return resolve(__dirname, '.', dir);
16 14 }
... ... @@ -63,7 +61,6 @@ export default ({ command, mode }: ConfigEnv): UserConfig =&gt; {
63 61 chunkSizeWarningLimit: 1200,
64 62 },
65 63 define: {
66   - __VERSION__: pkg.version,
67 64 // setting vue-i18-next
68 65 // Suppress warning
69 66 __VUE_I18N_LEGACY_API__: false,
... ...
yarn.lock
... ... @@ -34,7 +34,7 @@
34 34 "@types/lodash" "^4.14.165"
35 35 lodash "^4.17.15"
36 36  
37   -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.11":
  37 +"@babel/code-frame@7.12.11", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.11":
38 38 version "7.12.11"
39 39 resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
40 40 integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
... ... @@ -1759,13 +1759,13 @@
1759 1759 resolved "https://registry.npmjs.org/@types/zxcvbn/-/zxcvbn-4.4.0.tgz#fbc1d941cc6d9d37d18405c513ba6b294f89b609"
1760 1760 integrity sha512-GQLOT+SN20a+AI51y3fAimhyTF4Y0RG+YP3gf91OibIZ7CJmPFgoZi+ZR5a+vRbS01LbQosITWum4ATmJ1Z6Pg==
1761 1761  
1762   -"@typescript-eslint/eslint-plugin@^4.15.0":
1763   - version "4.15.0"
1764   - resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.15.0.tgz#13a5a07cf30d0d5781e43480aa2a8d38d308b084"
1765   - integrity sha512-DJgdGZW+8CFUTz5C/dnn4ONcUm2h2T0itWD85Ob5/V27Ndie8hUoX5HKyGssvR8sUMkAIlUc/AMK67Lqa3kBIQ==
  1762 +"@typescript-eslint/eslint-plugin@^4.15.1":
  1763 + version "4.15.1"
  1764 + resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.15.1.tgz#835f64aa0a403e5e9e64c10ceaf8d05c3f015180"
  1765 + integrity sha512-yW2epMYZSpNJXZy22Biu+fLdTG8Mn6b22kR3TqblVk50HGNV8Zya15WAXuQCr8tKw4Qf1BL4QtI6kv6PCkLoJw==
1766 1766 dependencies:
1767   - "@typescript-eslint/experimental-utils" "4.15.0"
1768   - "@typescript-eslint/scope-manager" "4.15.0"
  1767 + "@typescript-eslint/experimental-utils" "4.15.1"
  1768 + "@typescript-eslint/scope-manager" "4.15.1"
1769 1769 debug "^4.1.1"
1770 1770 functional-red-black-tree "^1.0.1"
1771 1771 lodash "^4.17.15"
... ... @@ -1773,66 +1773,66 @@
1773 1773 semver "^7.3.2"
1774 1774 tsutils "^3.17.1"
1775 1775  
1776   -"@typescript-eslint/experimental-utils@4.15.0":
1777   - version "4.15.0"
1778   - resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.15.0.tgz#b87c36410a9b23f637689427be85007a2ec1a9c6"
1779   - integrity sha512-V4vaDWvxA2zgesg4KPgEGiomWEBpJXvY4ZX34Y3qxK8LUm5I87L+qGIOTd9tHZOARXNRt9pLbblSKiYBlGMawg==
  1776 +"@typescript-eslint/experimental-utils@4.15.1":
  1777 + version "4.15.1"
  1778 + resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.15.1.tgz#d744d1ac40570a84b447f7aa1b526368afd17eec"
  1779 + integrity sha512-9LQRmOzBRI1iOdJorr4jEnQhadxK4c9R2aEAsm7WE/7dq8wkKD1suaV0S/JucTL8QlYUPU1y2yjqg+aGC0IQBQ==
1780 1780 dependencies:
1781 1781 "@types/json-schema" "^7.0.3"
1782   - "@typescript-eslint/scope-manager" "4.15.0"
1783   - "@typescript-eslint/types" "4.15.0"
1784   - "@typescript-eslint/typescript-estree" "4.15.0"
  1782 + "@typescript-eslint/scope-manager" "4.15.1"
  1783 + "@typescript-eslint/types" "4.15.1"
  1784 + "@typescript-eslint/typescript-estree" "4.15.1"
1785 1785 eslint-scope "^5.0.0"
1786 1786 eslint-utils "^2.0.0"
1787 1787  
1788   -"@typescript-eslint/parser@^4.15.0":
1789   - version "4.15.0"
1790   - resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.15.0.tgz#8df94365b4b7161f9e8514fe28aef19954810b6b"
1791   - integrity sha512-L6Dtbq8Bc7g2aZwnIBETpmUa9XDKCMzKVwAArnGp5Mn7PRNFjf3mUzq8UeBjL3K8t311hvevnyqXAMSmxO8Gpg==
  1788 +"@typescript-eslint/parser@^4.15.1":
  1789 + version "4.15.1"
  1790 + resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.15.1.tgz#4c91a0602733db63507e1dbf13187d6c71a153c4"
  1791 + integrity sha512-V8eXYxNJ9QmXi5ETDguB7O9diAXlIyS+e3xzLoP/oVE4WCAjssxLIa0mqCLsCGXulYJUfT+GV70Jv1vHsdKwtA==
1792 1792 dependencies:
1793   - "@typescript-eslint/scope-manager" "4.15.0"
1794   - "@typescript-eslint/types" "4.15.0"
1795   - "@typescript-eslint/typescript-estree" "4.15.0"
  1793 + "@typescript-eslint/scope-manager" "4.15.1"
  1794 + "@typescript-eslint/types" "4.15.1"
  1795 + "@typescript-eslint/typescript-estree" "4.15.1"
1796 1796 debug "^4.1.1"
1797 1797  
1798   -"@typescript-eslint/scope-manager@4.15.0":
1799   - version "4.15.0"
1800   - resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.15.0.tgz#c42703558ea6daaaba51a9c3a86f2902dbab9432"
1801   - integrity sha512-CSNBZnCC2jEA/a+pR9Ljh8Y+5TY5qgbPz7ICEk9WCpSEgT6Pi7H2RIjxfrrbUXvotd6ta+i27sssKEH8Azm75g==
  1798 +"@typescript-eslint/scope-manager@4.15.1":
  1799 + version "4.15.1"
  1800 + resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.15.1.tgz#f6511eb38def2a8a6be600c530c243bbb56ac135"
  1801 + integrity sha512-ibQrTFcAm7yG4C1iwpIYK7vDnFg+fKaZVfvyOm3sNsGAerKfwPVFtYft5EbjzByDJ4dj1WD8/34REJfw/9wdVA==
1802 1802 dependencies:
1803   - "@typescript-eslint/types" "4.15.0"
1804   - "@typescript-eslint/visitor-keys" "4.15.0"
  1803 + "@typescript-eslint/types" "4.15.1"
  1804 + "@typescript-eslint/visitor-keys" "4.15.1"
1805 1805  
1806   -"@typescript-eslint/types@4.15.0":
1807   - version "4.15.0"
1808   - resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.15.0.tgz#3011ae1ac3299bb9a5ac56bdd297cccf679d3662"
1809   - integrity sha512-su4RHkJhS+iFwyqyXHcS8EGPlUVoC+XREfy5daivjLur9JP8GhvTmDipuRpcujtGC4M+GYhUOJCPDE3rC5NJrg==
  1806 +"@typescript-eslint/types@4.15.1":
  1807 + version "4.15.1"
  1808 + resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.15.1.tgz#da702f544ef1afae4bc98da699eaecd49cf31c8c"
  1809 + integrity sha512-iGsaUyWFyLz0mHfXhX4zO6P7O3sExQpBJ2dgXB0G5g/8PRVfBBsmQIc3r83ranEQTALLR3Vko/fnCIVqmH+mPw==
1810 1810  
1811   -"@typescript-eslint/typescript-estree@4.15.0":
1812   - version "4.15.0"
1813   - resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.15.0.tgz#402c86a7d2111c1f7a2513022f22a38a395b7f93"
1814   - integrity sha512-jG6xTmcNbi6xzZq0SdWh7wQ9cMb2pqXaUp6bUZOMsIlu5aOlxGxgE/t6L/gPybybQGvdguajXGkZKSndZJpksA==
  1811 +"@typescript-eslint/typescript-estree@4.15.1":
  1812 + version "4.15.1"
  1813 + resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.15.1.tgz#fa9a9ff88b4a04d901ddbe5b248bc0a00cd610be"
  1814 + integrity sha512-z8MN3CicTEumrWAEB2e2CcoZa3KP9+SMYLIA2aM49XW3cWIaiVSOAGq30ffR5XHxRirqE90fgLw3e6WmNx5uNw==
1815 1815 dependencies:
1816   - "@typescript-eslint/types" "4.15.0"
1817   - "@typescript-eslint/visitor-keys" "4.15.0"
  1816 + "@typescript-eslint/types" "4.15.1"
  1817 + "@typescript-eslint/visitor-keys" "4.15.1"
1818 1818 debug "^4.1.1"
1819 1819 globby "^11.0.1"
1820 1820 is-glob "^4.0.1"
1821 1821 semver "^7.3.2"
1822 1822 tsutils "^3.17.1"
1823 1823  
1824   -"@typescript-eslint/visitor-keys@4.15.0":
1825   - version "4.15.0"
1826   - resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.15.0.tgz#2a07768df30c8a5673f1bce406338a07fdec38ca"
1827   - integrity sha512-RnDtJwOwFucWFAMjG3ghCG/ikImFJFEg20DI7mn4pHEx3vC48lIAoyjhffvfHmErRDboUPC7p9Z2il4CLb7qxA==
  1824 +"@typescript-eslint/visitor-keys@4.15.1":
  1825 + version "4.15.1"
  1826 + resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.15.1.tgz#c76abbf2a3be8a70ed760f0e5756bf62de5865dd"
  1827 + integrity sha512-tYzaTP9plooRJY8eNlpAewTOqtWW/4ff/5wBjNVaJ0S0wC4Gpq/zDVRTJa5bq2v1pCNQ08xxMCndcvR+h7lMww==
1828 1828 dependencies:
1829   - "@typescript-eslint/types" "4.15.0"
  1829 + "@typescript-eslint/types" "4.15.1"
1830 1830 eslint-visitor-keys "^2.0.0"
1831 1831  
1832   -"@vitejs/plugin-legacy@^1.3.0":
1833   - version "1.3.0"
1834   - resolved "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-1.3.0.tgz#1b4f5d46e0cc3eb7d415f7aa9a9b655c2f593325"
1835   - integrity sha512-lNNNuFIZ3bTnAPlu/dvqi383+mpqVuoo0XpM4WtgxMQHNxK1rTk2liwlxxQk0/ivUJuvYo67YKq0GD1JkrQk5Q==
  1832 +"@vitejs/plugin-legacy@^1.3.1":
  1833 + version "1.3.1"
  1834 + resolved "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-1.3.1.tgz#e475213721aa7c5022314c4a6489f961a65e8d4e"
  1835 + integrity sha512-oidELN6ckX+APLjo2vjtyKv3X0Xj3SRzYd6Bm6taInhdH/JA/zlNF9uIUNvc5fIf/vIp0haoIY+mQNInAlKRrw==
1836 1836 dependencies:
1837 1837 "@babel/standalone" "^7.12.12"
1838 1838 core-js "^3.8.2"
... ... @@ -2068,18 +2068,18 @@
2068 2068 vscode-languageserver-textdocument "^1.0.1"
2069 2069 vscode-uri "^2.1.2"
2070 2070  
2071   -"@vueuse/core@^4.1.0":
2072   - version "4.1.0"
2073   - resolved "https://registry.npmjs.org/@vueuse/core/-/core-4.1.0.tgz#041ea810403433d9156e3903a45fc9ad83106b15"
2074   - integrity sha512-rcMceTJS6zDd5UOQr6bxhvqEsOitMNPlXAfTf0AJ9CaXs3ALAhtAyisGZCwZfHE5/Cid3Qy8bl3yWJwmrCOJSA==
  2071 +"@vueuse/core@^4.1.1":
  2072 + version "4.1.1"
  2073 + resolved "https://registry.npmjs.org/@vueuse/core/-/core-4.1.1.tgz#9136952bc435dfc42263959bea8dac35965bac43"
  2074 + integrity sha512-a+fu7FUHDzLpgcOGwbgyNZXLbm85NHEf4jkPkyqTtqHEHqU4aVbdyM0Vzl90PpFEDe92pJjoYJnZEQQgq9nEHw==
2075 2075 dependencies:
2076   - "@vueuse/shared" "4.1.0"
  2076 + "@vueuse/shared" "4.1.1"
2077 2077 vue-demi latest
2078 2078  
2079   -"@vueuse/shared@4.1.0":
2080   - version "4.1.0"
2081   - resolved "https://registry.npmjs.org/@vueuse/shared/-/shared-4.1.0.tgz#60d2a7b2d43173657816ae27dbb76d46dde480f4"
2082   - integrity sha512-E0g3MGu2RKLjPm6+EEsl93Q8+SDt1FDBnnzLz0iiUjpdo8KmHM6ivcGNe58B44/fNi9p+y0db53fubT0d/XJJQ==
  2079 +"@vueuse/shared@4.1.1":
  2080 + version "4.1.1"
  2081 + resolved "https://registry.npmjs.org/@vueuse/shared/-/shared-4.1.1.tgz#58e4333d5ab45927e25578fad83bc81cecfea475"
  2082 + integrity sha512-M1bNwOaJZypu/AUYKrOU87pQLRp8VgMYHQyL1hVc6V3hi3ZcUBSjZuyFVaUdxGk0OeA0NPzHoYbByTMrpxElug==
2083 2083 dependencies:
2084 2084 vue-demi latest
2085 2085  
... ... @@ -2241,10 +2241,10 @@ anymatch@~3.1.1:
2241 2241 normalize-path "^3.0.0"
2242 2242 picomatch "^2.0.4"
2243 2243  
2244   -apexcharts@^3.24.0:
2245   - version "3.24.0"
2246   - resolved "https://registry.npmjs.org/apexcharts/-/apexcharts-3.24.0.tgz#0fc513e940448524ae9702d39ec287567522d1eb"
2247   - integrity sha512-iT6czJCIVrmAtrcO90MZTQCvC+xi6R6Acf0jNH/d40FVTtCfcqECuKIh5iAMyOTtgUb7+fQ8rbadH2bm1kbL9Q==
  2244 +apexcharts@^3.25.0:
  2245 + version "3.25.0"
  2246 + resolved "https://registry.npmjs.org/apexcharts/-/apexcharts-3.25.0.tgz#f3f0f9f344f997230f5c7f2918408aa072627496"
  2247 + integrity sha512-uM7OF+jLL4ba79noYcrMwMgJW8DI+Ff28CCQoGq23g25z8nGSQEoU+u12YWlECA9gBA5tbmdaQhMxjlK+M6B9Q==
2248 2248 dependencies:
2249 2249 svg.draggable.js "^2.2.2"
2250 2250 svg.easing.js "^2.0.0"
... ... @@ -4011,15 +4011,15 @@ eslint-plugin-prettier@^3.3.1:
4011 4011 dependencies:
4012 4012 prettier-linter-helpers "^1.0.0"
4013 4013  
4014   -eslint-plugin-vue@^7.5.0:
4015   - version "7.5.0"
4016   - resolved "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.5.0.tgz#cc6d983eb22781fa2440a7573cf39af439bb5725"
4017   - integrity sha512-QnMMTcyV8PLxBz7QQNAwISSEs6LYk2LJvGlxalXvpCtfKnqo7qcY0aZTIxPe8QOnHd7WCwiMZLOJzg6A03T0Gw==
  4014 +eslint-plugin-vue@^7.6.0:
  4015 + version "7.6.0"
  4016 + resolved "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.6.0.tgz#ea616e6dfd45d545adb16cba628c5a992cc31f0b"
  4017 + integrity sha512-qYpKwAvpcQXyUXVcG8Zd+fxHDx9iSgTQuO7dql7Ug/2BCvNNDr6s3I9p8MoUo23JJdO7ZAjW3vSwY/EBf4uBcw==
4018 4018 dependencies:
4019 4019 eslint-utils "^2.1.0"
4020 4020 natural-compare "^1.4.0"
4021 4021 semver "^7.3.2"
4022   - vue-eslint-parser "^7.4.1"
  4022 + vue-eslint-parser "^7.5.0"
4023 4023  
4024 4024 eslint-scope@^5.0.0, eslint-scope@^5.1.1:
4025 4025 version "5.1.1"
... ... @@ -4046,12 +4046,12 @@ eslint-visitor-keys@^2.0.0:
4046 4046 resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8"
4047 4047 integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
4048 4048  
4049   -eslint@^7.19.0:
4050   - version "7.19.0"
4051   - resolved "https://registry.npmjs.org/eslint/-/eslint-7.19.0.tgz#6719621b196b5fad72e43387981314e5d0dc3f41"
4052   - integrity sha512-CGlMgJY56JZ9ZSYhJuhow61lMPPjUzWmChFya71Z/jilVos7mR/jPgaEfVGgMBY5DshbKdG8Ezb8FDCHcoMEMg==
  4049 +eslint@^7.20.0:
  4050 + version "7.20.0"
  4051 + resolved "https://registry.npmjs.org/eslint/-/eslint-7.20.0.tgz#db07c4ca4eda2e2316e7aa57ac7fc91ec550bdc7"
  4052 + integrity sha512-qGi0CTcOGP2OtCQBgWZlQjcTuP0XkIpYFj25XtRTQSHC+umNnp7UMshr2G8SLsRFYDdAPFeHOsiteadmMH02Yw==
4053 4053 dependencies:
4054   - "@babel/code-frame" "^7.0.0"
  4054 + "@babel/code-frame" "7.12.11"
4055 4055 "@eslint/eslintrc" "^0.3.0"
4056 4056 ajv "^6.10.0"
4057 4057 chalk "^4.0.0"
... ... @@ -4063,7 +4063,7 @@ eslint@^7.19.0:
4063 4063 eslint-utils "^2.1.0"
4064 4064 eslint-visitor-keys "^2.0.0"
4065 4065 espree "^7.3.1"
4066   - esquery "^1.2.0"
  4066 + esquery "^1.4.0"
4067 4067 esutils "^2.0.2"
4068 4068 file-entry-cache "^6.0.0"
4069 4069 functional-red-black-tree "^1.0.1"
... ... @@ -4120,10 +4120,10 @@ esprima@^4.0.0:
4120 4120 resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
4121 4121 integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
4122 4122  
4123   -esquery@^1.0.1, esquery@^1.2.0:
4124   - version "1.3.1"
4125   - resolved "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57"
4126   - integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==
  4123 +esquery@^1.4.0:
  4124 + version "1.4.0"
  4125 + resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
  4126 + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
4127 4127 dependencies:
4128 4128 estraverse "^5.1.0"
4129 4129  
... ... @@ -9376,10 +9376,10 @@ vite-plugin-theme@^0.4.3:
9376 9376 es-module-lexer "^0.3.26"
9377 9377 tinycolor2 "^1.4.2"
9378 9378  
9379   -vite@2.0.0-beta.69:
9380   - version "2.0.0-beta.69"
9381   - resolved "https://registry.npmjs.org/vite/-/vite-2.0.0-beta.69.tgz#dd10b4c366d64e670a0da612097fe9645c40212b"
9382   - integrity sha512-Wf4bWOK/b6Q+06Wyk7uJIBy/LiENGx26do6tn9gOMRRZLEuLizN/cDzGqnQkGVVevbb18xdilyxhnTes0lFjZg==
  9379 +vite@2.0.0-beta.70:
  9380 + version "2.0.0-beta.70"
  9381 + resolved "https://registry.npmjs.org/vite/-/vite-2.0.0-beta.70.tgz#ec0d4f2bfd02f31d2c59aa9760f27c26647f41ce"
  9382 + integrity sha512-rbuAYZE8T0jNOUykkyfjiiKmz4MpW2KqzHO8++WCCDXyxzIg56ICQ/B6NLZzVpWyk0iSKiUKr2k8NMkmDlZAQQ==
9383 9383 dependencies:
9384 9384 esbuild "^0.8.34"
9385 9385 postcss "^8.2.1"
... ... @@ -9408,16 +9408,16 @@ vue-demi@latest:
9408 9408 resolved "https://registry.npmjs.org/vue-demi/-/vue-demi-0.6.0.tgz#e314282f704cb449119b9fd002cbbc0e39f591fe"
9409 9409 integrity sha512-8GEJa0mHJpYJeGeq5fD1pJct2kfdl30PHfmL1NaJ97mgKPyKojlIRt/3inGBK4Y0ylCI6T5vOo3chwpqDOq/Hw==
9410 9410  
9411   -vue-eslint-parser@^7.4.1:
9412   - version "7.4.1"
9413   - resolved "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.4.1.tgz#e4adcf7876a7379758d9056a72235af18a587f92"
9414   - integrity sha512-AFvhdxpFvliYq1xt/biNBslTHE/zbEvSnr1qfHA/KxRIpErmEDrQZlQnvEexednRHmLfDNOMuDYwZL5xkLzIXQ==
  9411 +vue-eslint-parser@^7.5.0:
  9412 + version "7.5.0"
  9413 + resolved "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.5.0.tgz#b68221c55fee061899afcfb4441ec74c1495285e"
  9414 + integrity sha512-6EHzl00hIpy4yWZo3qSbtvtVw1A1cTKOv1w95QSuAqGgk4113XtRjvNIiEGo49r0YWOPYsrmI4Dl64axL5Agrw==
9415 9415 dependencies:
9416 9416 debug "^4.1.1"
9417 9417 eslint-scope "^5.0.0"
9418 9418 eslint-visitor-keys "^1.1.0"
9419 9419 espree "^6.2.1"
9420   - esquery "^1.0.1"
  9420 + esquery "^1.4.0"
9421 9421 lodash "^4.17.15"
9422 9422  
9423 9423 vue-i18n@9.0.0-rc.2:
... ...