Commit 61cf0f791e8ee05676fe7fa382b6a2c2b1bea92d

Authored by vben
1 parent 9ea257e1

fix(moment): fix moment error #217

package.json
@@ -61,14 +61,14 @@ @@ -61,14 +61,14 @@
61 "@types/sortablejs": "^1.10.6", 61 "@types/sortablejs": "^1.10.6",
62 "@types/yargs": "^15.0.12", 62 "@types/yargs": "^15.0.12",
63 "@types/zxcvbn": "^4.4.0", 63 "@types/zxcvbn": "^4.4.0",
64 - "@typescript-eslint/eslint-plugin": "^4.14.0",  
65 - "@typescript-eslint/parser": "^4.14.0", 64 + "@typescript-eslint/eslint-plugin": "^4.14.1",
  65 + "@typescript-eslint/parser": "^4.14.1",
66 "@vitejs/plugin-legacy": "^1.2.1", 66 "@vitejs/plugin-legacy": "^1.2.1",
67 - "@vitejs/plugin-vue": "1.1.0", 67 + "@vitejs/plugin-vue": "^1.1.2",
68 "@vitejs/plugin-vue-jsx": "^1.0.2", 68 "@vitejs/plugin-vue-jsx": "^1.0.2",
69 "@vue/compiler-sfc": "^3.0.5", 69 "@vue/compiler-sfc": "^3.0.5",
70 - "@vuedx/typecheck": "^0.6.0",  
71 - "@vuedx/typescript-plugin-vue": "^0.6.0", 70 + "@vuedx/typecheck": "^0.6.3",
  71 + "@vuedx/typescript-plugin-vue": "^0.6.3",
72 "autoprefixer": "^10.2.3", 72 "autoprefixer": "^10.2.3",
73 "commitizen": "^4.2.3", 73 "commitizen": "^4.2.3",
74 "conventional-changelog-cli": "^2.1.1", 74 "conventional-changelog-cli": "^2.1.1",
@@ -83,8 +83,6 @@ @@ -83,8 +83,6 @@
83 "husky": "^4.3.8", 83 "husky": "^4.3.8",
84 "less": "^4.1.0", 84 "less": "^4.1.0",
85 "lint-staged": "^10.5.3", 85 "lint-staged": "^10.5.3",
86 - "postcss": "^8.2.4",  
87 - "postcss-import": "^14.0.0",  
88 "prettier": "^2.2.1", 86 "prettier": "^2.2.1",
89 "rimraf": "^3.0.2", 87 "rimraf": "^3.0.2",
90 "rollup-plugin-gzip": "^2.5.0", 88 "rollup-plugin-gzip": "^2.5.0",
@@ -95,11 +93,11 @@ @@ -95,11 +93,11 @@
95 "stylelint-order": "^4.1.0", 93 "stylelint-order": "^4.1.0",
96 "ts-node": "^9.1.1", 94 "ts-node": "^9.1.1",
97 "typescript": "^4.1.3", 95 "typescript": "^4.1.3",
98 - "vite": "2.0.0-beta.48", 96 + "vite": "2.0.0-beta.50",
99 "vite-plugin-html": "^2.0.0-beta.6", 97 "vite-plugin-html": "^2.0.0-beta.6",
100 "vite-plugin-mock": "^2.0.0-rc.2", 98 "vite-plugin-mock": "^2.0.0-rc.2",
101 "vite-plugin-purge-icons": "^0.6.0", 99 "vite-plugin-purge-icons": "^0.6.0",
102 - "vite-plugin-pwa": "^0.3.10", 100 + "vite-plugin-pwa": "^0.4.0",
103 "vite-plugin-style-import": "^0.4.6", 101 "vite-plugin-style-import": "^0.4.6",
104 "vue-eslint-parser": "^7.4.1", 102 "vue-eslint-parser": "^7.4.1",
105 "yargs": "^16.2.0" 103 "yargs": "^16.2.0"
postcss.config.js
1 module.exports = { 1 module.exports = {
2 plugins: { 2 plugins: {
3 - 'postcss-import': {},  
4 autoprefixer: {}, 3 autoprefixer: {},
5 }, 4 },
6 }; 5 };
src/locales/useLocale.ts
@@ -9,7 +9,7 @@ import { useLocaleSetting } from '/@/hooks/setting/useLocaleSetting'; @@ -9,7 +9,7 @@ import { useLocaleSetting } from '/@/hooks/setting/useLocaleSetting';
9 9
10 import { i18n } from './setupI18n'; 10 import { i18n } from './setupI18n';
11 11
12 -import 'moment/locale/zh-cn'; 12 +import 'moment/dist/locale/zh-cn';
13 13
14 const antConfigLocaleRef = ref<any>(null); 14 const antConfigLocaleRef = ref<any>(null);
15 15
src/views/sys/lock/useNow.ts
@@ -27,7 +27,7 @@ export function useNow(immediate = true) { @@ -27,7 +27,7 @@ export function useNow(immediate = true) {
27 const s = now.get('s'); 27 const s = now.get('s');
28 28
29 state.year = now.get('y'); 29 state.year = now.get('y');
30 - state.month = now.get('M'); 30 + state.month = now.get('M') + 1;
31 state.week = localData.weekdays()[now.day()]; 31 state.week = localData.weekdays()[now.day()];
32 state.day = now.get('D'); 32 state.day = now.get('D');
33 state.hour = h; 33 state.hour = h;
vite.config.ts
@@ -84,7 +84,7 @@ export default ({ command, mode }: ConfigEnv): UserConfig =&gt; { @@ -84,7 +84,7 @@ export default ({ command, mode }: ConfigEnv): UserConfig =&gt; {
84 '@ant-design/icons-vue', 84 '@ant-design/icons-vue',
85 'echarts/map/js/china', 85 'echarts/map/js/china',
86 'ant-design-vue/es/locale/zh_CN', 86 'ant-design-vue/es/locale/zh_CN',
87 - 'moment/locale/zh-cn', 87 + 'moment/dist/locale/zh-cn',
88 'ant-design-vue/es/locale/en_US', 88 'ant-design-vue/es/locale/en_US',
89 'resize-observer-polyfill', 89 'resize-observer-polyfill',
90 ], 90 ],
yarn.lock
@@ -1676,13 +1676,13 @@ @@ -1676,13 +1676,13 @@
1676 resolved "https://registry.npmjs.org/@types/zxcvbn/-/zxcvbn-4.4.0.tgz#fbc1d941cc6d9d37d18405c513ba6b294f89b609" 1676 resolved "https://registry.npmjs.org/@types/zxcvbn/-/zxcvbn-4.4.0.tgz#fbc1d941cc6d9d37d18405c513ba6b294f89b609"
1677 integrity sha512-GQLOT+SN20a+AI51y3fAimhyTF4Y0RG+YP3gf91OibIZ7CJmPFgoZi+ZR5a+vRbS01LbQosITWum4ATmJ1Z6Pg== 1677 integrity sha512-GQLOT+SN20a+AI51y3fAimhyTF4Y0RG+YP3gf91OibIZ7CJmPFgoZi+ZR5a+vRbS01LbQosITWum4ATmJ1Z6Pg==
1678 1678
1679 -"@typescript-eslint/eslint-plugin@^4.14.0":  
1680 - version "4.14.0"  
1681 - resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.14.0.tgz#92db8e7c357ed7d69632d6843ca70b71be3a721d"  
1682 - integrity sha512-IJ5e2W7uFNfg4qh9eHkHRUCbgZ8VKtGwD07kannJvM5t/GU8P8+24NX8gi3Hf5jST5oWPY8kyV1s/WtfiZ4+Ww== 1679 +"@typescript-eslint/eslint-plugin@^4.14.1":
  1680 + version "4.14.1"
  1681 + resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.14.1.tgz#22dd301ce228aaab3416b14ead10b1db3e7d3180"
  1682 + integrity sha512-5JriGbYhtqMS1kRcZTQxndz1lKMwwEXKbwZbkUZNnp6MJX0+OVXnG0kOlBZP4LUAxEyzu3cs+EXd/97MJXsGfw==
1683 dependencies: 1683 dependencies:
1684 - "@typescript-eslint/experimental-utils" "4.14.0"  
1685 - "@typescript-eslint/scope-manager" "4.14.0" 1684 + "@typescript-eslint/experimental-utils" "4.14.1"
  1685 + "@typescript-eslint/scope-manager" "4.14.1"
1686 debug "^4.1.1" 1686 debug "^4.1.1"
1687 functional-red-black-tree "^1.0.1" 1687 functional-red-black-tree "^1.0.1"
1688 lodash "^4.17.15" 1688 lodash "^4.17.15"
@@ -1690,48 +1690,48 @@ @@ -1690,48 +1690,48 @@
1690 semver "^7.3.2" 1690 semver "^7.3.2"
1691 tsutils "^3.17.1" 1691 tsutils "^3.17.1"
1692 1692
1693 -"@typescript-eslint/experimental-utils@4.14.0":  
1694 - version "4.14.0"  
1695 - resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.14.0.tgz#5aa7b006736634f588a69ee343ca959cd09988df"  
1696 - integrity sha512-6i6eAoiPlXMKRbXzvoQD5Yn9L7k9ezzGRvzC/x1V3650rUk3c3AOjQyGYyF9BDxQQDK2ElmKOZRD0CbtdkMzQQ== 1693 +"@typescript-eslint/experimental-utils@4.14.1":
  1694 + version "4.14.1"
  1695 + resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.14.1.tgz#a5c945cb24dabb96747180e1cfc8487f8066f471"
  1696 + integrity sha512-2CuHWOJwvpw0LofbyG5gvYjEyoJeSvVH2PnfUQSn0KQr4v8Dql2pr43ohmx4fdPQ/eVoTSFjTi/bsGEXl/zUUQ==
1697 dependencies: 1697 dependencies:
1698 "@types/json-schema" "^7.0.3" 1698 "@types/json-schema" "^7.0.3"
1699 - "@typescript-eslint/scope-manager" "4.14.0"  
1700 - "@typescript-eslint/types" "4.14.0"  
1701 - "@typescript-eslint/typescript-estree" "4.14.0" 1699 + "@typescript-eslint/scope-manager" "4.14.1"
  1700 + "@typescript-eslint/types" "4.14.1"
  1701 + "@typescript-eslint/typescript-estree" "4.14.1"
1702 eslint-scope "^5.0.0" 1702 eslint-scope "^5.0.0"
1703 eslint-utils "^2.0.0" 1703 eslint-utils "^2.0.0"
1704 1704
1705 -"@typescript-eslint/parser@^4.14.0":  
1706 - version "4.14.0"  
1707 - resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.14.0.tgz#62d4cd2079d5c06683e9bfb200c758f292c4dee7"  
1708 - integrity sha512-sUDeuCjBU+ZF3Lzw0hphTyScmDDJ5QVkyE21pRoBo8iDl7WBtVFS+WDN3blY1CH3SBt7EmYCw6wfmJjF0l/uYg== 1705 +"@typescript-eslint/parser@^4.14.1":
  1706 + version "4.14.1"
  1707 + resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.14.1.tgz#3bd6c24710cd557d8446625284bcc9c6d52817c6"
  1708 + integrity sha512-mL3+gU18g9JPsHZuKMZ8Z0Ss9YP1S5xYZ7n68Z98GnPq02pYNQuRXL85b9GYhl6jpdvUc45Km7hAl71vybjUmw==
1709 dependencies: 1709 dependencies:
1710 - "@typescript-eslint/scope-manager" "4.14.0"  
1711 - "@typescript-eslint/types" "4.14.0"  
1712 - "@typescript-eslint/typescript-estree" "4.14.0" 1710 + "@typescript-eslint/scope-manager" "4.14.1"
  1711 + "@typescript-eslint/types" "4.14.1"
  1712 + "@typescript-eslint/typescript-estree" "4.14.1"
1713 debug "^4.1.1" 1713 debug "^4.1.1"
1714 1714
1715 -"@typescript-eslint/scope-manager@4.14.0":  
1716 - version "4.14.0"  
1717 - resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.14.0.tgz#55a4743095d684e1f7b7180c4bac2a0a3727f517"  
1718 - integrity sha512-/J+LlRMdbPh4RdL4hfP1eCwHN5bAhFAGOTsvE6SxsrM/47XQiPSgF5MDgLyp/i9kbZV9Lx80DW0OpPkzL+uf8Q== 1715 +"@typescript-eslint/scope-manager@4.14.1":
  1716 + version "4.14.1"
  1717 + resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.14.1.tgz#8444534254c6f370e9aa974f035ced7fe713ce02"
  1718 + integrity sha512-F4bjJcSqXqHnC9JGUlnqSa3fC2YH5zTtmACS1Hk+WX/nFB0guuynVK5ev35D4XZbdKjulXBAQMyRr216kmxghw==
1719 dependencies: 1719 dependencies:
1720 - "@typescript-eslint/types" "4.14.0"  
1721 - "@typescript-eslint/visitor-keys" "4.14.0" 1720 + "@typescript-eslint/types" "4.14.1"
  1721 + "@typescript-eslint/visitor-keys" "4.14.1"
1722 1722
1723 -"@typescript-eslint/types@4.14.0":  
1724 - version "4.14.0"  
1725 - resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.14.0.tgz#d8a8202d9b58831d6fd9cee2ba12f8a5a5dd44b6"  
1726 - integrity sha512-VsQE4VvpldHrTFuVPY1ZnHn/Txw6cZGjL48e+iBxTi2ksa9DmebKjAeFmTVAYoSkTk7gjA7UqJ7pIsyifTsI4A== 1723 +"@typescript-eslint/types@4.14.1":
  1724 + version "4.14.1"
  1725 + resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.14.1.tgz#b3d2eb91dafd0fd8b3fce7c61512ac66bd0364aa"
  1726 + integrity sha512-SkhzHdI/AllAgQSxXM89XwS1Tkic7csPdndUuTKabEwRcEfR8uQ/iPA3Dgio1rqsV3jtqZhY0QQni8rLswJM2w==
1727 1727
1728 -"@typescript-eslint/typescript-estree@4.14.0":  
1729 - version "4.14.0"  
1730 - resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.14.0.tgz#4bcd67486e9acafc3d0c982b23a9ab8ac8911ed7"  
1731 - integrity sha512-wRjZ5qLao+bvS2F7pX4qi2oLcOONIB+ru8RGBieDptq/SudYwshveORwCVU4/yMAd4GK7Fsf8Uq1tjV838erag== 1728 +"@typescript-eslint/typescript-estree@4.14.1":
  1729 + version "4.14.1"
  1730 + resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.14.1.tgz#20d3b8c8e3cdc8f764bdd5e5b0606dd83da6075b"
  1731 + integrity sha512-M8+7MbzKC1PvJIA8kR2sSBnex8bsR5auatLCnVlNTJczmJgqRn8M+sAlQfkEq7M4IY3WmaNJ+LJjPVRrREVSHQ==
1732 dependencies: 1732 dependencies:
1733 - "@typescript-eslint/types" "4.14.0"  
1734 - "@typescript-eslint/visitor-keys" "4.14.0" 1733 + "@typescript-eslint/types" "4.14.1"
  1734 + "@typescript-eslint/visitor-keys" "4.14.1"
1735 debug "^4.1.1" 1735 debug "^4.1.1"
1736 globby "^11.0.1" 1736 globby "^11.0.1"
1737 is-glob "^4.0.1" 1737 is-glob "^4.0.1"
@@ -1739,12 +1739,12 @@ @@ -1739,12 +1739,12 @@
1739 semver "^7.3.2" 1739 semver "^7.3.2"
1740 tsutils "^3.17.1" 1740 tsutils "^3.17.1"
1741 1741
1742 -"@typescript-eslint/visitor-keys@4.14.0":  
1743 - version "4.14.0"  
1744 - resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.14.0.tgz#b1090d9d2955b044b2ea2904a22496849acbdf54"  
1745 - integrity sha512-MeHHzUyRI50DuiPgV9+LxcM52FCJFYjJiWHtXlbyC27b80mfOwKeiKI+MHOTEpcpfmoPFm/vvQS88bYIx6PZTA== 1742 +"@typescript-eslint/visitor-keys@4.14.1":
  1743 + version "4.14.1"
  1744 + resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.14.1.tgz#e93c2ff27f47ee477a929b970ca89d60a117da91"
  1745 + integrity sha512-TAblbDXOI7bd0C/9PE1G+AFo7R5uc+ty1ArDoxmrC1ah61Hn6shURKy7gLdRb1qKJmjHkqu5Oq+e4Kt0jwf1IA==
1746 dependencies: 1746 dependencies:
1747 - "@typescript-eslint/types" "4.14.0" 1747 + "@typescript-eslint/types" "4.14.1"
1748 eslint-visitor-keys "^2.0.0" 1748 eslint-visitor-keys "^2.0.0"
1749 1749
1750 "@vitejs/plugin-legacy@^1.2.1": 1750 "@vitejs/plugin-legacy@^1.2.1":
@@ -1768,10 +1768,10 @@ @@ -1768,10 +1768,10 @@
1768 "@vue/babel-plugin-jsx" "^1.0.1" 1768 "@vue/babel-plugin-jsx" "^1.0.1"
1769 hash-sum "^2.0.0" 1769 hash-sum "^2.0.0"
1770 1770
1771 -"@vitejs/plugin-vue@1.1.0":  
1772 - version "1.1.0"  
1773 - resolved "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-1.1.0.tgz#8ae0b11388897b07259c9e5198c0e3fb5e4b37d9"  
1774 - integrity sha512-ExlAt3nb3PB31jV9AgRZSMoGd+aQRU53fc/seghV8/l0JCzaX2mqlgpG8iytWkRxbBPgtAx4TpCPdiVKnTFT/A== 1771 +"@vitejs/plugin-vue@^1.1.2":
  1772 + version "1.1.2"
  1773 + resolved "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-1.1.2.tgz#64d1f0e0739675f5717015ffb4d861c53af8fe60"
  1774 + integrity sha512-a5ORYuPsiAO4Kb2blA/x63mDiBQBxEJkbjhVtiv5IP/I7fGfpwXPPGHx9LHD4MedpXp8icngJYMKO0hOwahtmQ==
1775 1775
1776 "@vue/babel-helper-vue-transform-on@^1.0.2": 1776 "@vue/babel-helper-vue-transform-on@^1.0.2":
1777 version "1.0.2" 1777 version "1.0.2"
@@ -1876,10 +1876,10 @@ @@ -1876,10 +1876,10 @@
1876 resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.5.tgz#c131d88bd6713cc4d93b3bb1372edb1983225ff0" 1876 resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.5.tgz#c131d88bd6713cc4d93b3bb1372edb1983225ff0"
1877 integrity sha512-gYsNoGkWejBxNO6SNRjOh/xKeZ0H0V+TFzaPzODfBjkAIb0aQgBuixC1brandC/CDJy1wYPwSoYrXpvul7m6yw== 1877 integrity sha512-gYsNoGkWejBxNO6SNRjOh/xKeZ0H0V+TFzaPzODfBjkAIb0aQgBuixC1brandC/CDJy1wYPwSoYrXpvul7m6yw==
1878 1878
1879 -"@vuedx/analyze@0.6.0":  
1880 - version "0.6.0"  
1881 - resolved "https://registry.npmjs.org/@vuedx/analyze/-/analyze-0.6.0.tgz#93e1136e5259cb5ffc6b714cd5ffe63b70e89fb8"  
1882 - integrity sha512-zq1d6PSQslESD8P1o0SejIjEWSnOLeWHfaWWW55oIVzMFseWiJKU56azn4nGA8gsb2goF2DPpbf74z1ZF4xrjg== 1879 +"@vuedx/analyze@0.6.3":
  1880 + version "0.6.3"
  1881 + resolved "https://registry.npmjs.org/@vuedx/analyze/-/analyze-0.6.3.tgz#f7f367ea1a1b10e22212a4f2f89d5781f17f3c84"
  1882 + integrity sha512-LiQ7Ppw4nEr5qjth+gg1m48yXD7usOcAygUU10lLwfRRlDZevxAdZRcNuC0vBOXUG3xbl6CSDXnAMeWFdlUiyw==
1883 dependencies: 1883 dependencies:
1884 "@babel/code-frame" "^7.10.4" 1884 "@babel/code-frame" "^7.10.4"
1885 "@babel/generator" "^7.12.1" 1885 "@babel/generator" "^7.12.1"
@@ -1888,99 +1888,99 @@ @@ -1888,99 +1888,99 @@
1888 "@babel/traverse" "7.12.1" 1888 "@babel/traverse" "7.12.1"
1889 "@babel/types" "7.12.1" 1889 "@babel/types" "7.12.1"
1890 "@types/micromatch" "^4.0.1" 1890 "@types/micromatch" "^4.0.1"
1891 - "@vuedx/compiler-sfc" "0.6.0"  
1892 - "@vuedx/compiler-tsx" "0.6.0"  
1893 - "@vuedx/projectconfig" "0.6.0"  
1894 - "@vuedx/shared" "0.6.0"  
1895 - "@vuedx/template-ast-types" "0.6.0" 1891 + "@vuedx/compiler-sfc" "0.6.2"
  1892 + "@vuedx/compiler-tsx" "0.6.3"
  1893 + "@vuedx/projectconfig" "0.6.2"
  1894 + "@vuedx/shared" "0.6.2"
  1895 + "@vuedx/template-ast-types" "0.6.2"
1896 cli-highlight "^2.1.4" 1896 cli-highlight "^2.1.4"
1897 commander "^6.1.0" 1897 commander "^6.1.0"
1898 fast-glob "^3.2.4" 1898 fast-glob "^3.2.4"
1899 hash-sum "^2.0.0" 1899 hash-sum "^2.0.0"
1900 micromatch "^4.0.2" 1900 micromatch "^4.0.2"
1901 1901
1902 -"@vuedx/compiler-sfc@0.6.0":  
1903 - version "0.6.0"  
1904 - resolved "https://registry.npmjs.org/@vuedx/compiler-sfc/-/compiler-sfc-0.6.0.tgz#94669e10cc65355b49dad44e953e3b426eec1bba"  
1905 - integrity sha512-UNW6/NOgTDCUCCaQsM1ZW+XmfVIgTqn06FtrZGxvwYzq+9swqI41T788rNylGzTXcCbO5ksrEAUuANjU+vDmXA== 1902 +"@vuedx/compiler-sfc@0.6.2":
  1903 + version "0.6.2"
  1904 + resolved "https://registry.npmjs.org/@vuedx/compiler-sfc/-/compiler-sfc-0.6.2.tgz#f9a0d66eb48be839d363364ed4cd96967929f3cb"
  1905 + integrity sha512-mJehCyO6BJiHCLPfVQQZb7RliuwBh7voGkrF27SkA3yhv44VSDaMbDIX2VRm3utl1CacFEVdNFqB9QYviZByfg==
1906 dependencies: 1906 dependencies:
1907 "@vue/compiler-core" "^3.0.2" 1907 "@vue/compiler-core" "^3.0.2"
1908 lru-cache "^6.0.0" 1908 lru-cache "^6.0.0"
1909 source-map "^0.6.1" 1909 source-map "^0.6.1"
1910 1910
1911 -"@vuedx/compiler-tsx@0.6.0":  
1912 - version "0.6.0"  
1913 - resolved "https://registry.npmjs.org/@vuedx/compiler-tsx/-/compiler-tsx-0.6.0.tgz#54c2cc3f104cb1011a0e667d9defa9c385242200"  
1914 - integrity sha512-lMufESTvpX51jRMgxoqgjn8rGSZJv2ChijkDDn9Lv5TPAf7m0hEvJ7gZa/oLlqk+zk0I8wzTDmr0lE5dCIWdNg== 1911 +"@vuedx/compiler-tsx@0.6.3":
  1912 + version "0.6.3"
  1913 + resolved "https://registry.npmjs.org/@vuedx/compiler-tsx/-/compiler-tsx-0.6.3.tgz#d5ed641ee5c90baf3a04962f47e8c9d31d318b9a"
  1914 + integrity sha512-H1SSgUHQXWoTnrIxvl9uXGMUqKlWjNddp8xc+EAg7BRQ4F7kFzHTzOsafG5xzrqnmZujj8cLUknG123rWgsxIg==
1915 dependencies: 1915 dependencies:
1916 "@babel/parser" "7.12.3" 1916 "@babel/parser" "7.12.3"
1917 "@babel/types" "7.12.1" 1917 "@babel/types" "7.12.1"
1918 "@vue/compiler-core" "^3.0.1" 1918 "@vue/compiler-core" "^3.0.1"
1919 - "@vuedx/shared" "0.6.0"  
1920 - "@vuedx/template-ast-types" "0.6.0" 1919 + "@vuedx/shared" "0.6.2"
  1920 + "@vuedx/template-ast-types" "0.6.2"
1921 1921
1922 -"@vuedx/projectconfig@0.6.0":  
1923 - version "0.6.0"  
1924 - resolved "https://registry.npmjs.org/@vuedx/projectconfig/-/projectconfig-0.6.0.tgz#e38607528cafea3644358f6a1b5881587d4c3ab5"  
1925 - integrity sha512-9xr8CpBl+s9fLLckQHEk7b665Le5OHDInAADOVaUzBnXOLyWD9mtGn5t+ljvDUspEGnoRYGxLukCrlzGohy8eQ== 1922 +"@vuedx/projectconfig@0.6.2":
  1923 + version "0.6.2"
  1924 + resolved "https://registry.npmjs.org/@vuedx/projectconfig/-/projectconfig-0.6.2.tgz#4c7c32fc76a5a0cb2a8a8b4c4530183d7b70decc"
  1925 + integrity sha512-qoekczmYpg4bOHMUduGgwGEWYq2CZL9HfztNzSPaJnErTBc4VNFnCBLsAtFPLkILASh6vzE2m/EpIzSpMW5mJQ==
1926 1926
1927 -"@vuedx/shared@0.6.0":  
1928 - version "0.6.0"  
1929 - resolved "https://registry.npmjs.org/@vuedx/shared/-/shared-0.6.0.tgz#a296bbad3ea7c012ac3f978d823348cd5512f590"  
1930 - integrity sha512-DpHDUoP7urxYXItXYTieTp/HIxcuH2Lhbukx6xAZGCwjo1/8scao49mDgprkc1jWM4cabzrHgwagtcx/ExF4pA== 1927 +"@vuedx/shared@0.6.2":
  1928 + version "0.6.2"
  1929 + resolved "https://registry.npmjs.org/@vuedx/shared/-/shared-0.6.2.tgz#ada493a0af75306e37ac19fe8e836f1ce07c8745"
  1930 + integrity sha512-xCXK+X5iDXkNfLglxFGFeEtqSWlopU8Cj6dGgMABWlee7HVDl47A4sj5oQpKuTjwRJHyE+BYtgGxtf1eLee5Yg==
1931 dependencies: 1931 dependencies:
1932 "@sentry/node" "^5.30.0" 1932 "@sentry/node" "^5.30.0"
1933 node-unique-machine-id "^1.1.0" 1933 node-unique-machine-id "^1.1.0"
1934 uuid "^8.3.2" 1934 uuid "^8.3.2"
1935 1935
1936 -"@vuedx/template-ast-types@0.6.0":  
1937 - version "0.6.0"  
1938 - resolved "https://registry.npmjs.org/@vuedx/template-ast-types/-/template-ast-types-0.6.0.tgz#e494b7737b4474a0d7d9b599a7755af5645ad6d9"  
1939 - integrity sha512-VUooW3BrQFgydEDP8I0vk4VBSjPORlqCEIJpX3uc4TAR7RIsWExC55c57lOkfrOAELGvxCv2ouy28bfwL0djsg== 1936 +"@vuedx/template-ast-types@0.6.2":
  1937 + version "0.6.2"
  1938 + resolved "https://registry.npmjs.org/@vuedx/template-ast-types/-/template-ast-types-0.6.2.tgz#8932b665abfed4593a0bdbfa91ed788056876770"
  1939 + integrity sha512-TY3IesmF6/XbZnlLnImE30MXVJeXpMh8F5ZKZeeVDIvDWmPDZ6fC8DbDj1GycZtx77C85yZRnJJqq5v0AED4aw==
1940 dependencies: 1940 dependencies:
1941 "@vue/compiler-core" "^3.0.0" 1941 "@vue/compiler-core" "^3.0.0"
1942 1942
1943 -"@vuedx/typecheck@^0.6.0":  
1944 - version "0.6.0"  
1945 - resolved "https://registry.npmjs.org/@vuedx/typecheck/-/typecheck-0.6.0.tgz#05dbdb55d4f453112a870d834acf00078876959d"  
1946 - integrity sha512-QExuNoY8cMEvFg11gSH/w1s9cdWDw00/yCeXf3+GnMnuX7MARxzXC5v8zSoWBz6p8nxeVaxiELlo2uZbGwwnQg== 1943 +"@vuedx/typecheck@^0.6.3":
  1944 + version "0.6.3"
  1945 + resolved "https://registry.npmjs.org/@vuedx/typecheck/-/typecheck-0.6.3.tgz#d66b8dcfa8d7d37ccfa196d019c8a5cc8bc7fc4d"
  1946 + integrity sha512-1WfUI+bqg1O8Vklz24EZdsUE6ak4QCxtV6gWrUw+VUbep7ANhZM4RkaMsDFWVdeb2dip9ROrO8ESBrsIViPT8Q==
1947 dependencies: 1947 dependencies:
1948 - "@vuedx/shared" "0.6.0"  
1949 - "@vuedx/typescript-plugin-vue" "0.6.0"  
1950 - "@vuedx/vue-virtual-textdocument" "0.6.0" 1948 + "@vuedx/shared" "0.6.2"
  1949 + "@vuedx/typescript-plugin-vue" "0.6.3"
  1950 + "@vuedx/vue-virtual-textdocument" "0.6.3"
1951 chalk "^4.1.0" 1951 chalk "^4.1.0"
1952 fast-glob "^3.2.4" 1952 fast-glob "^3.2.4"
1953 minimist "^1.2.5" 1953 minimist "^1.2.5"
1954 resolve-from "^5.0.0" 1954 resolve-from "^5.0.0"
1955 typescript "^4.0.3" 1955 typescript "^4.0.3"
1956 1956
1957 -"@vuedx/typescript-plugin-vue@0.6.0", "@vuedx/typescript-plugin-vue@^0.6.0":  
1958 - version "0.6.0"  
1959 - resolved "https://registry.npmjs.org/@vuedx/typescript-plugin-vue/-/typescript-plugin-vue-0.6.0.tgz#69db85c01f7f9256a51b80363e127d78c15efc78"  
1960 - integrity sha512-hTtqSPrU6hpZGQ1LH/mmK5G1gluXCWmD/Q46IzviMIzdJVC14W6BkxwoOMyg9+fIKtkMplqzBTPsK65FhDlOjA== 1957 +"@vuedx/typescript-plugin-vue@0.6.3", "@vuedx/typescript-plugin-vue@^0.6.3":
  1958 + version "0.6.3"
  1959 + resolved "https://registry.npmjs.org/@vuedx/typescript-plugin-vue/-/typescript-plugin-vue-0.6.3.tgz#cc2d99bdc0abbde9bb5909341c47715af00539a3"
  1960 + integrity sha512-zAhXM9LDVYvjAMnTiqf6yZcJXXh1rQrH3JhcmQNmlxk26sRysfa/VWNC8qkfq9vcOKRf1eQusH4g+Vov6qPGig==
1961 dependencies: 1961 dependencies:
1962 "@intlify/core" "^9.0.0-beta.15" 1962 "@intlify/core" "^9.0.0-beta.15"
1963 - "@vuedx/analyze" "0.6.0"  
1964 - "@vuedx/compiler-sfc" "0.6.0"  
1965 - "@vuedx/projectconfig" "0.6.0"  
1966 - "@vuedx/shared" "0.6.0"  
1967 - "@vuedx/template-ast-types" "0.6.0"  
1968 - "@vuedx/vue-virtual-textdocument" "0.6.0" 1963 + "@vuedx/analyze" "0.6.3"
  1964 + "@vuedx/compiler-sfc" "0.6.2"
  1965 + "@vuedx/projectconfig" "0.6.2"
  1966 + "@vuedx/shared" "0.6.2"
  1967 + "@vuedx/template-ast-types" "0.6.2"
  1968 + "@vuedx/vue-virtual-textdocument" "0.6.3"
1969 de-indent "^1.0.2" 1969 de-indent "^1.0.2"
1970 json5 "^2.1.3" 1970 json5 "^2.1.3"
1971 quick-lru "^5.1.1" 1971 quick-lru "^5.1.1"
1972 vscode-uri "^2.1.2" 1972 vscode-uri "^2.1.2"
1973 vscode-web-custom-data "^0.3.2" 1973 vscode-web-custom-data "^0.3.2"
1974 1974
1975 -"@vuedx/vue-virtual-textdocument@0.6.0":  
1976 - version "0.6.0"  
1977 - resolved "https://registry.npmjs.org/@vuedx/vue-virtual-textdocument/-/vue-virtual-textdocument-0.6.0.tgz#2df68c78cd3a9d69cf56fae9581c939ebc22990d"  
1978 - integrity sha512-LkJRmuyvTS3j9UoLPVIPB0/V6WhyuFtCHIzg6guGU/HxfhzttXC0/LQZ9gMCIC4RmDM0fpYb4pIkxjKWPGcZMw== 1975 +"@vuedx/vue-virtual-textdocument@0.6.3":
  1976 + version "0.6.3"
  1977 + resolved "https://registry.npmjs.org/@vuedx/vue-virtual-textdocument/-/vue-virtual-textdocument-0.6.3.tgz#750484d93378b47ead5f6e319e32d33160ed5658"
  1978 + integrity sha512-FN5h4GsIcYAIfFbal0+1ryddDgpxMx/gxGE5QYinbwj5PwILZzyAUt//drQfppIHzCL+TJuZSml7fAod5tYvQA==
1979 dependencies: 1979 dependencies:
1980 - "@vuedx/analyze" "0.6.0"  
1981 - "@vuedx/compiler-sfc" "0.6.0"  
1982 - "@vuedx/compiler-tsx" "0.6.0"  
1983 - "@vuedx/shared" "0.6.0" 1980 + "@vuedx/analyze" "0.6.3"
  1981 + "@vuedx/compiler-sfc" "0.6.2"
  1982 + "@vuedx/compiler-tsx" "0.6.3"
  1983 + "@vuedx/shared" "0.6.2"
1984 source-map "^0.6.1" 1984 source-map "^0.6.1"
1985 vscode-languageserver-textdocument "^1.0.1" 1985 vscode-languageserver-textdocument "^1.0.1"
1986 vscode-uri "^2.1.2" 1986 vscode-uri "^2.1.2"
@@ -5990,15 +5990,6 @@ postcss-html@^0.36.0: @@ -5990,15 +5990,6 @@ postcss-html@^0.36.0:
5990 dependencies: 5990 dependencies:
5991 htmlparser2 "^3.10.0" 5991 htmlparser2 "^3.10.0"
5992 5992
5993 -postcss-import@^14.0.0:  
5994 - version "14.0.0"  
5995 - resolved "https://registry.npmjs.org/postcss-import/-/postcss-import-14.0.0.tgz#3ed1dadac5a16650bde3f4cdea6633b9c3c78296"  
5996 - integrity sha512-gFDDzXhqr9ELmnLHgCC3TbGfA6Dm/YMb/UN8/f7Uuq4fL7VTk2vOIj6hwINEwbokEmp123bLD7a5m+E+KIetRg==  
5997 - dependencies:  
5998 - postcss-value-parser "^4.0.0"  
5999 - read-cache "^1.0.0"  
6000 - resolve "^1.1.7"  
6001 -  
6002 postcss-less@^3.1.4: 5993 postcss-less@^3.1.4:
6003 version "3.1.4" 5994 version "3.1.4"
6004 resolved "https://registry.npmjs.org/postcss-less/-/postcss-less-3.1.4.tgz#369f58642b5928ef898ffbc1a6e93c958304c5ad" 5995 resolved "https://registry.npmjs.org/postcss-less/-/postcss-less-3.1.4.tgz#369f58642b5928ef898ffbc1a6e93c958304c5ad"
@@ -6109,7 +6100,7 @@ postcss-syntax@^0.36.2: @@ -6109,7 +6100,7 @@ postcss-syntax@^0.36.2:
6109 resolved "https://registry.npmjs.org/postcss-syntax/-/postcss-syntax-0.36.2.tgz#f08578c7d95834574e5593a82dfbfa8afae3b51c" 6100 resolved "https://registry.npmjs.org/postcss-syntax/-/postcss-syntax-0.36.2.tgz#f08578c7d95834574e5593a82dfbfa8afae3b51c"
6110 integrity sha512-nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w== 6101 integrity sha512-nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w==
6111 6102
6112 -postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0: 6103 +postcss-value-parser@^4.1.0:
6113 version "4.1.0" 6104 version "4.1.0"
6114 resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" 6105 resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
6115 integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== 6106 integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==
@@ -6123,7 +6114,7 @@ postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.21, postcss@^7.0. @@ -6123,7 +6114,7 @@ postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.21, postcss@^7.0.
6123 source-map "^0.6.1" 6114 source-map "^0.6.1"
6124 supports-color "^6.1.0" 6115 supports-color "^6.1.0"
6125 6116
6126 -postcss@^8.2.1, postcss@^8.2.4: 6117 +postcss@^8.2.1:
6127 version "8.2.4" 6118 version "8.2.4"
6128 resolved "https://registry.npmjs.org/postcss/-/postcss-8.2.4.tgz#20a98a39cf303d15129c2865a9ec37eda0031d04" 6119 resolved "https://registry.npmjs.org/postcss/-/postcss-8.2.4.tgz#20a98a39cf303d15129c2865a9ec37eda0031d04"
6129 integrity sha512-kRFftRoExRVXZlwUuay9iC824qmXPcQQVzAjbCCgjpXnkdMCJYBu2gTwAaFBzv8ewND6O8xFb3aELmEkh9zTzg== 6120 integrity sha512-kRFftRoExRVXZlwUuay9iC824qmXPcQQVzAjbCCgjpXnkdMCJYBu2gTwAaFBzv8ewND6O8xFb3aELmEkh9zTzg==
@@ -6237,13 +6228,6 @@ raw-body@2.4.0: @@ -6237,13 +6228,6 @@ raw-body@2.4.0:
6237 iconv-lite "0.4.24" 6228 iconv-lite "0.4.24"
6238 unpipe "1.0.0" 6229 unpipe "1.0.0"
6239 6230
6240 -read-cache@^1.0.0:  
6241 - version "1.0.0"  
6242 - resolved "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774"  
6243 - integrity sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=  
6244 - dependencies:  
6245 - pify "^2.3.0"  
6246 -  
6247 read-pkg-up@^1.0.1: 6231 read-pkg-up@^1.0.1:
6248 version "1.0.1" 6232 version "1.0.1"
6249 resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 6233 resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
@@ -6505,7 +6489,7 @@ resolve-url@^0.2.1: @@ -6505,7 +6489,7 @@ resolve-url@^0.2.1:
6505 resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 6489 resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
6506 integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 6490 integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
6507 6491
6508 -resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.17.0, resolve@^1.19.0: 6492 +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.17.0, resolve@^1.19.0:
6509 version "1.19.0" 6493 version "1.19.0"
6510 resolved "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c" 6494 resolved "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c"
6511 integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg== 6495 integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==
@@ -7738,10 +7722,10 @@ vite-plugin-purge-icons@^0.6.0: @@ -7738,10 +7722,10 @@ vite-plugin-purge-icons@^0.6.0:
7738 "@purge-icons/generated" "^0.6.0" 7722 "@purge-icons/generated" "^0.6.0"
7739 rollup-plugin-purge-icons "^0.6.0" 7723 rollup-plugin-purge-icons "^0.6.0"
7740 7724
7741 -vite-plugin-pwa@^0.3.10:  
7742 - version "0.3.10"  
7743 - resolved "https://registry.npmjs.org/vite-plugin-pwa/-/vite-plugin-pwa-0.3.10.tgz#254f29ae1f449874e6cbcc3be23881edec32984b"  
7744 - integrity sha512-UMvOTsTQumIy1yJ7imIEsjdealbeOzc30PjNK1By4aEuRUHCI2kJ7Mmh8xUbLJWSLVaUfIKIG1zguk5cpmD3SQ== 7725 +vite-plugin-pwa@^0.4.0:
  7726 + version "0.4.0"
  7727 + resolved "https://registry.npmjs.org/vite-plugin-pwa/-/vite-plugin-pwa-0.4.0.tgz#be7723315beed00ca7f9d23b24c5b1356276747c"
  7728 + integrity sha512-+qsqpR6QgkxY8IdSyjHDGz5L5+3pbXKVP2KztqMeamu8Rpki45kEUMrdhloFSPiSNA7L+xS/U6WDyNe+u0IP4A==
7745 dependencies: 7729 dependencies:
7746 debug "^4.3.2" 7730 debug "^4.3.2"
7747 fast-glob "^3.2.5" 7731 fast-glob "^3.2.5"
@@ -7759,10 +7743,10 @@ vite-plugin-style-import@^0.4.6: @@ -7759,10 +7743,10 @@ vite-plugin-style-import@^0.4.6:
7759 "@rollup/pluginutils" "^4.1.0" 7743 "@rollup/pluginutils" "^4.1.0"
7760 change-case "^4.1.2" 7744 change-case "^4.1.2"
7761 7745
7762 -vite@2.0.0-beta.48:  
7763 - version "2.0.0-beta.48"  
7764 - resolved "https://registry.npmjs.org/vite/-/vite-2.0.0-beta.48.tgz#76938af039fedd62177c3305b6195f8d25eb591a"  
7765 - integrity sha512-PmyRdMV4gxGCW9z7e/zPQzEibBzDDGF8K1Rxdw5/JsuijYYG4Kc43erDyJ8FnQ0s1ne3NAJNgbMy00QJ4NKMIw== 7746 +vite@2.0.0-beta.50:
  7747 + version "2.0.0-beta.50"
  7748 + resolved "https://registry.npmjs.org/vite/-/vite-2.0.0-beta.50.tgz#04e66d009470ca90ab8a4a43687e899b670a0f25"
  7749 + integrity sha512-zzMgrWJK92/aQ1rxvc+0QKeOCdOP4m2EPGwK2HKhlifQVnSdpYQzQkWLzaGh1GQAp61W+Su8cu6cWINpFgNrfQ==
7766 dependencies: 7750 dependencies:
7767 esbuild "^0.8.34" 7751 esbuild "^0.8.34"
7768 postcss "^8.2.1" 7752 postcss "^8.2.1"