Commit e4c3d0918abb9e88bea1fd1d21b13b884529a027
1 parent
c26dd034
chore: update deps
Showing
4 changed files
with
262 additions
and
223 deletions
build/config/themeConfig.ts
... | ... | @@ -6,7 +6,7 @@ export const darkMode = 'light'; |
6 | 6 | |
7 | 7 | type Fn = (...arg: any) => any; |
8 | 8 | |
9 | -type GenerateTheme = 'default' | 'dark' | |
9 | +type GenerateTheme = 'default' | 'dark'; | |
10 | 10 | |
11 | 11 | export interface GenerateColorsParams { |
12 | 12 | mixLighten: Fn; |
... | ... | @@ -17,14 +17,14 @@ export interface GenerateColorsParams { |
17 | 17 | |
18 | 18 | export function generateAntColors(color: string, theme: GenerateTheme = 'default') { |
19 | 19 | return generate(color, { |
20 | - theme | |
20 | + theme, | |
21 | 21 | }); |
22 | 22 | } |
23 | 23 | |
24 | 24 | export function getThemeColors(color?: string) { |
25 | 25 | const tc = color || primaryColor; |
26 | 26 | const lightColors = generateAntColors(tc); |
27 | - const primary = colors[5]; | |
27 | + const primary = lightColors[5]; | |
28 | 28 | const modeColors = generateAntColors(primary, 'dark'); |
29 | 29 | |
30 | 30 | return [...lightColors, ...modeColors]; | ... | ... |
package.json
... | ... | @@ -8,7 +8,7 @@ |
8 | 8 | }, |
9 | 9 | "scripts": { |
10 | 10 | "bootstrap": "yarn install", |
11 | - "serve": "cross-env --max_old_space_size=4096 vite", | |
11 | + "serve": "npm run dev", | |
12 | 12 | "dev": "cross-env --max_old_space_size=4096 vite", |
13 | 13 | "build": "vite build && esno ./build/script/postBuild.ts", |
14 | 14 | "build:no-cache": "yarn clean:cache && npm run build", |
... | ... | @@ -32,12 +32,12 @@ |
32 | 32 | "postinstall": "npm run install:husky" |
33 | 33 | }, |
34 | 34 | "dependencies": { |
35 | - "@iconify/iconify": "^2.0.0", | |
36 | - "@logicflow/core": "^0.3.6", | |
37 | - "@logicflow/extension": "^0.3.6", | |
38 | - "@vueuse/core": "^4.9.2", | |
35 | + "@iconify/iconify": "^2.0.1", | |
36 | + "@logicflow/core": "^0.4.3", | |
37 | + "@logicflow/extension": "^0.4.3", | |
38 | + "@vueuse/core": "^4.9.3", | |
39 | 39 | "@zxcvbn-ts/core": "^0.3.0", |
40 | - "ant-design-vue": "^2.1.3", | |
40 | + "ant-design-vue": "^2.1.6", | |
41 | 41 | "axios": "^0.21.1", |
42 | 42 | "codemirror": "^5.61.0", |
43 | 43 | "cropperjs": "^1.5.11", |
... | ... | @@ -47,7 +47,7 @@ |
47 | 47 | "mockjs": "^1.1.0", |
48 | 48 | "nprogress": "^0.2.0", |
49 | 49 | "path-to-regexp": "^6.2.0", |
50 | - "pinia": "2.0.0-alpha.13", | |
50 | + "pinia": "2.0.0-alpha.16", | |
51 | 51 | "print-js": "^1.6.0", |
52 | 52 | "qrcode": "^1.4.4", |
53 | 53 | "sortablejs": "^1.13.0", |
... | ... | @@ -56,14 +56,14 @@ |
56 | 56 | "vue": "3.0.11", |
57 | 57 | "vue-i18n": "9.0.0", |
58 | 58 | "vue-json-pretty": "^2.0.2", |
59 | - "vue-router": "^4.0.6", | |
59 | + "vue-router": "^4.0.8", | |
60 | 60 | "vue-types": "^3.0.2", |
61 | - "xlsx": "^0.16.9" | |
61 | + "xlsx": "^0.17.0" | |
62 | 62 | }, |
63 | 63 | "devDependencies": { |
64 | - "@commitlint/cli": "^12.1.1", | |
65 | - "@commitlint/config-conventional": "^12.1.1", | |
66 | - "@iconify/json": "^1.1.340", | |
64 | + "@commitlint/cli": "^12.1.4", | |
65 | + "@commitlint/config-conventional": "^12.1.4", | |
66 | + "@iconify/json": "^1.1.343", | |
67 | 67 | "@purge-icons/generated": "^0.7.0", |
68 | 68 | "@types/codemirror": "^5.60.0", |
69 | 69 | "@types/crypto-js": "^4.0.1", |
... | ... | @@ -75,9 +75,9 @@ |
75 | 75 | "@types/qrcode": "^1.4.0", |
76 | 76 | "@types/qs": "^6.9.6", |
77 | 77 | "@types/sortablejs": "^1.10.6", |
78 | - "@typescript-eslint/eslint-plugin": "^4.22.1", | |
79 | - "@typescript-eslint/parser": "^4.22.1", | |
80 | - "@vitejs/plugin-legacy": "^1.3.3", | |
78 | + "@typescript-eslint/eslint-plugin": "^4.23.0", | |
79 | + "@typescript-eslint/parser": "^4.23.0", | |
80 | + "@vitejs/plugin-legacy": "^1.3.4", | |
81 | 81 | "@vitejs/plugin-vue": "^1.2.2", |
82 | 82 | "@vitejs/plugin-vue-jsx": "^1.1.4", |
83 | 83 | "@vue/compiler-sfc": "3.0.11", |
... | ... | @@ -85,7 +85,7 @@ |
85 | 85 | "commitizen": "^4.2.4", |
86 | 86 | "conventional-changelog-cli": "^2.1.1", |
87 | 87 | "cross-env": "^7.0.3", |
88 | - "dotenv": "^9.0.1", | |
88 | + "dotenv": "^9.0.2", | |
89 | 89 | "eslint": "^7.26.0", |
90 | 90 | "eslint-config-prettier": "^8.3.0", |
91 | 91 | "eslint-define-config": "^1.0.8", |
... | ... | @@ -99,8 +99,8 @@ |
99 | 99 | "is-ci": "^3.0.0", |
100 | 100 | "less": "^4.1.1", |
101 | 101 | "lint-staged": "^11.0.0", |
102 | - "postcss": "^8.2.14", | |
103 | - "prettier": "^2.2.1", | |
102 | + "postcss": "^8.2.15", | |
103 | + "prettier": "^2.3.0", | |
104 | 104 | "pretty-quick": "^3.1.0", |
105 | 105 | "rimraf": "^3.0.2", |
106 | 106 | "rollup-plugin-visualizer": "5.5.0", |
... | ... | @@ -110,7 +110,7 @@ |
110 | 110 | "stylelint-order": "^4.1.0", |
111 | 111 | "ts-node": "^9.1.1", |
112 | 112 | "typescript": "4.2.4", |
113 | - "vite": "2.2.4", | |
113 | + "vite": "2.3.2", | |
114 | 114 | "vite-plugin-compression": "^0.2.5", |
115 | 115 | "vite-plugin-html": "^2.0.7", |
116 | 116 | "vite-plugin-imagemin": "^0.3.2", |
... | ... | @@ -125,9 +125,9 @@ |
125 | 125 | "vue-tsc": "^0.1.2" |
126 | 126 | }, |
127 | 127 | "resolutions": { |
128 | - "//": "Used to install imagemin dependencies, because imagemin may not be installed in China.If it is abroad, you can delete it", | |
128 | + "//": "Used to install imagemin dependencies, because imagemin may not be installed in China. If it is abroad, you can delete it", | |
129 | 129 | "bin-wrapper": "npm:bin-wrapper-china", |
130 | - "rollup": "^2.47.0" | |
130 | + "rollup": "^2.48.0" | |
131 | 131 | }, |
132 | 132 | "repository": { |
133 | 133 | "type": "git", | ... | ... |
src/views/sys/about/index.vue
... | ... | @@ -4,7 +4,7 @@ |
4 | 4 | <div class="flex justify-between items-center"> |
5 | 5 | <span class="flex-1"> |
6 | 6 | <a :href="GITHUB_URL" target="_blank">{{ name }}</a> |
7 | - ๆฏไธไธชๅบไบVue3.01ใViteใ Ant-Design-Vue ใTypeScript | |
7 | + ๆฏไธไธชๅบไบVue3.0ใViteใ Ant-Design-Vue ใTypeScript | |
8 | 8 | ็ๅๅฐ่งฃๅณๆนๆก๏ผ็ฎๆ ๆฏไธบไธญๅคงๅ้กน็ฎๅผๅ,ๆไพ็ฐๆ็ๅผ็ฎฑ่งฃๅณๆนๆกๅไธฐๅฏ็็คบไพ,ๅๅไธไธไผ้ๅถไปปไฝไปฃ็ ็จไบๅ็จใ |
9 | 9 | </span> |
10 | 10 | </div> | ... | ... |
yarn.lock
... | ... | @@ -923,35 +923,34 @@ |
923 | 923 | "@babel/helper-validator-identifier" "^7.14.0" |
924 | 924 | to-fast-properties "^2.0.0" |
925 | 925 | |
926 | -"@commitlint/cli@^12.1.1": | |
927 | - version "12.1.1" | |
928 | - resolved "https://registry.npmjs.org/@commitlint/cli/-/cli-12.1.1.tgz#740370e557a8a17f415052821cdd5276ecb0ab98" | |
929 | - integrity sha512-SB67/s6VJ50seoPx/Sr2gj1fMzKrx+udgarecGdr8h43ah+M2e22gjQJ7xHv5KwyPQ+6ug1YOMCL34ubT4zupQ== | |
930 | - dependencies: | |
931 | - "@commitlint/format" "^12.1.1" | |
932 | - "@commitlint/lint" "^12.1.1" | |
933 | - "@commitlint/load" "^12.1.1" | |
934 | - "@commitlint/read" "^12.1.1" | |
935 | - "@commitlint/types" "^12.1.1" | |
936 | - get-stdin "8.0.0" | |
926 | +"@commitlint/cli@^12.1.4": | |
927 | + version "12.1.4" | |
928 | + resolved "https://registry.npmjs.org/@commitlint/cli/-/cli-12.1.4.tgz#af4d9dd3c0122c7b39a61fa1cd2abbad0422dbe0" | |
929 | + integrity sha512-ZR1WjXLvqEffYyBPT0XdnSxtt3Ty1TMoujEtseW5o3vPnkA1UNashAMjQVg/oELqfaiAMnDw8SERPMN0e/0kLg== | |
930 | + dependencies: | |
931 | + "@commitlint/format" "^12.1.4" | |
932 | + "@commitlint/lint" "^12.1.4" | |
933 | + "@commitlint/load" "^12.1.4" | |
934 | + "@commitlint/read" "^12.1.4" | |
935 | + "@commitlint/types" "^12.1.4" | |
937 | 936 | lodash "^4.17.19" |
938 | 937 | resolve-from "5.0.0" |
939 | 938 | resolve-global "1.0.0" |
940 | 939 | yargs "^16.2.0" |
941 | 940 | |
942 | -"@commitlint/config-conventional@^12.1.1": | |
943 | - version "12.1.1" | |
944 | - resolved "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-12.1.1.tgz#73dd3b1a7912138420d248f334f15c94c250bc9e" | |
945 | - integrity sha512-15CqbXMsQiEb0qbzjEHe2OkzaXPYSp7RxaS6KoSVk/4W0QiigquavQ+M0huBZze92h0lMS6Pxoq4AJ5CQ3D+iQ== | |
941 | +"@commitlint/config-conventional@^12.1.4": | |
942 | + version "12.1.4" | |
943 | + resolved "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-12.1.4.tgz#95bbab622f117a8a3e49f95917b08655040c66a8" | |
944 | + integrity sha512-ZIdzmdy4o4WyqywMEpprRCrehjCSQrHkaRTVZV411GyLigFQHlEBSJITAihLAWe88Qy/8SyoIe5uKvAsV5vRqQ== | |
946 | 945 | dependencies: |
947 | 946 | conventional-changelog-conventionalcommits "^4.3.1" |
948 | 947 | |
949 | -"@commitlint/ensure@^12.1.1": | |
950 | - version "12.1.1" | |
951 | - resolved "https://registry.npmjs.org/@commitlint/ensure/-/ensure-12.1.1.tgz#bcefc85f7f8a41bb31f67d7a8966e322b47a6e43" | |
952 | - integrity sha512-XEUQvUjzBVQM7Uv8vYz+c7PDukFvx0AvQEyX/V+PaTkCK/xPvexu7FLbFwvypjSt9BPMf+T/rhB1hVmldkd6lw== | |
948 | +"@commitlint/ensure@^12.1.4": | |
949 | + version "12.1.4" | |
950 | + resolved "https://registry.npmjs.org/@commitlint/ensure/-/ensure-12.1.4.tgz#287ae2dcc5ccb086e749705b1bd9bdb99773056f" | |
951 | + integrity sha512-MxHIBuAG9M4xl33qUfIeMSasbv3ktK0W+iygldBxZOL4QSYC2Gn66pZAQMnV9o3V+sVFHoAK2XUKqBAYrgbEqw== | |
953 | 952 | dependencies: |
954 | - "@commitlint/types" "^12.1.1" | |
953 | + "@commitlint/types" "^12.1.4" | |
955 | 954 | lodash "^4.17.19" |
956 | 955 | |
957 | 956 | "@commitlint/execute-rule@^12.1.1": |
... | ... | @@ -959,33 +958,38 @@ |
959 | 958 | resolved "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-12.1.1.tgz#8aad1d46fb78b3199e4ae36debdc93570bf765ea" |
960 | 959 | integrity sha512-6mplMGvLCKF5LieL7BRhydpg32tm6LICnWQADrWU4S5g9PKi2utNvhiaiuNPoHUXr29RdbNaGNcyyPv8DSjJsQ== |
961 | 960 | |
962 | -"@commitlint/format@^12.1.1": | |
963 | - version "12.1.1" | |
964 | - resolved "https://registry.npmjs.org/@commitlint/format/-/format-12.1.1.tgz#a6b14f8605171374eecc2c463098d63c127ab7df" | |
965 | - integrity sha512-bTAoOryTFLqls17JTaRwk2WDVOP0NwuG4F/JPK8RaF6DMZNVQTfajkgTxFENNZRnESfau1BvivvEXfUAW2ZsvA== | |
961 | +"@commitlint/execute-rule@^12.1.4": | |
962 | + version "12.1.4" | |
963 | + resolved "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-12.1.4.tgz#9973b02e9779adbf1522ae9ac207a4815ec73de1" | |
964 | + integrity sha512-h2S1j8SXyNeABb27q2Ok2vD1WfxJiXvOttKuRA9Or7LN6OQoC/KtT3844CIhhWNteNMu/wE0gkTqGxDVAnJiHg== | |
965 | + | |
966 | +"@commitlint/format@^12.1.4": | |
967 | + version "12.1.4" | |
968 | + resolved "https://registry.npmjs.org/@commitlint/format/-/format-12.1.4.tgz#db2d46418a6ae57c90e5f7f65dff46f0265d9f24" | |
969 | + integrity sha512-h28ucMaoRjVvvgS6Bdf85fa/+ZZ/iu1aeWGCpURnQV7/rrVjkhNSjZwGlCOUd5kDV1EnZ5XdI7L18SUpRjs26g== | |
966 | 970 | dependencies: |
967 | - "@commitlint/types" "^12.1.1" | |
971 | + "@commitlint/types" "^12.1.4" | |
968 | 972 | chalk "^4.0.0" |
969 | 973 | |
970 | -"@commitlint/is-ignored@^12.1.1": | |
971 | - version "12.1.1" | |
972 | - resolved "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-12.1.1.tgz#6075a5cd2dcda7b6ec93322f5dbe2142cfbb3248" | |
973 | - integrity sha512-Sn4fsnWX+wLAJOD/UZeoVruB98te1TyPYRiDEq0MhRJAQIrP+7jE/O3/ass68AAMq00HvH3OK9kt4UBXggcGjA== | |
974 | +"@commitlint/is-ignored@^12.1.4": | |
975 | + version "12.1.4" | |
976 | + resolved "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-12.1.4.tgz#4c430bc3b361aa9be5cd4ddb252c1559870ea7bc" | |
977 | + integrity sha512-uTu2jQU2SKvtIRVLOzMQo3KxDtO+iJ1p0olmncwrqy4AfPLgwoyCP2CiULq5M7xpR3+dE3hBlZXbZTQbD7ycIw== | |
974 | 978 | dependencies: |
975 | - "@commitlint/types" "^12.1.1" | |
979 | + "@commitlint/types" "^12.1.4" | |
976 | 980 | semver "7.3.5" |
977 | 981 | |
978 | -"@commitlint/lint@^12.1.1": | |
979 | - version "12.1.1" | |
980 | - resolved "https://registry.npmjs.org/@commitlint/lint/-/lint-12.1.1.tgz#cdd898af6eadba8f9e71d7f1255b5a479a757078" | |
981 | - integrity sha512-FFFPpku/E0svL1jaUVqosuZJDDWiNWYBlUw5ZEljh3MwWRcoaWtMIX5bseX+IvHpFZsCTAiBs1kCgNulCi0UvA== | |
982 | +"@commitlint/lint@^12.1.4": | |
983 | + version "12.1.4" | |
984 | + resolved "https://registry.npmjs.org/@commitlint/lint/-/lint-12.1.4.tgz#856b7fd2b2e6367b836cb84a12f1c1b3c0e40d22" | |
985 | + integrity sha512-1kZ8YDp4to47oIPFELUFGLiLumtPNKJigPFDuHt2+f3Q3IKdQ0uk53n3CPl4uoyso/Og/EZvb1mXjFR/Yce4cA== | |
982 | 986 | dependencies: |
983 | - "@commitlint/is-ignored" "^12.1.1" | |
984 | - "@commitlint/parse" "^12.1.1" | |
985 | - "@commitlint/rules" "^12.1.1" | |
986 | - "@commitlint/types" "^12.1.1" | |
987 | + "@commitlint/is-ignored" "^12.1.4" | |
988 | + "@commitlint/parse" "^12.1.4" | |
989 | + "@commitlint/rules" "^12.1.4" | |
990 | + "@commitlint/types" "^12.1.4" | |
987 | 991 | |
988 | -"@commitlint/load@>6.1.1", "@commitlint/load@^12.1.1": | |
992 | +"@commitlint/load@>6.1.1": | |
989 | 993 | version "12.1.1" |
990 | 994 | resolved "https://registry.npmjs.org/@commitlint/load/-/load-12.1.1.tgz#5a7fb8be11e520931d1237c5e8dc401b7cc9c6c1" |
991 | 995 | integrity sha512-qOQtgNdJRULUQWP9jkpTwhj7aEtnqUtqeUpbQ9rjS+GIUST65HZbteNUX4S0mAEGPWqy2aK5xGd73cUfFSvuuw== |
... | ... | @@ -998,27 +1002,40 @@ |
998 | 1002 | lodash "^4.17.19" |
999 | 1003 | resolve-from "^5.0.0" |
1000 | 1004 | |
1001 | -"@commitlint/message@^12.1.1": | |
1002 | - version "12.1.1" | |
1003 | - resolved "https://registry.npmjs.org/@commitlint/message/-/message-12.1.1.tgz#56eb1dbb561e85e9295380a46ff3b09bc93cac65" | |
1004 | - integrity sha512-RakDSLAiOligXjhbLahV8HowF4K75pZIcs0+Ii9Q8Gz5H3DWf1Ngit7alFTWfcbf/+DTjSzVPov5HiwQZPIBUg== | |
1005 | +"@commitlint/load@^12.1.4": | |
1006 | + version "12.1.4" | |
1007 | + resolved "https://registry.npmjs.org/@commitlint/load/-/load-12.1.4.tgz#e3c2dbc0e7d8d928f57a6878bd7219909fc0acab" | |
1008 | + integrity sha512-Keszi0IOjRzKfxT+qES/n+KZyLrxy79RQz8wWgssCboYjKEp+wC+fLCgbiMCYjI5k31CIzIOq/16J7Ycr0C0EA== | |
1009 | + dependencies: | |
1010 | + "@commitlint/execute-rule" "^12.1.4" | |
1011 | + "@commitlint/resolve-extends" "^12.1.4" | |
1012 | + "@commitlint/types" "^12.1.4" | |
1013 | + chalk "^4.0.0" | |
1014 | + cosmiconfig "^7.0.0" | |
1015 | + lodash "^4.17.19" | |
1016 | + resolve-from "^5.0.0" | |
1005 | 1017 | |
1006 | -"@commitlint/parse@^12.1.1": | |
1007 | - version "12.1.1" | |
1008 | - resolved "https://registry.npmjs.org/@commitlint/parse/-/parse-12.1.1.tgz#3e49d6dc113d59cf266af0db99e320e933108c56" | |
1009 | - integrity sha512-nuljIvAbBDr93DgL0wCArftEIhjSghawAwhvrKNV9FFcqAJqfVqitwMxJrNDCQ5pgUMCSKULLOEv+dA0bLlTEQ== | |
1018 | +"@commitlint/message@^12.1.4": | |
1019 | + version "12.1.4" | |
1020 | + resolved "https://registry.npmjs.org/@commitlint/message/-/message-12.1.4.tgz#3895edcc0709deca5945f3d55f5ea95a9f1f446d" | |
1021 | + integrity sha512-6QhalEKsKQ/Y16/cTk5NH4iByz26fqws2ub+AinHPtM7Io0jy4e3rym9iE+TkEqiqWZlUigZnTwbPvRJeSUBaA== | |
1022 | + | |
1023 | +"@commitlint/parse@^12.1.4": | |
1024 | + version "12.1.4" | |
1025 | + resolved "https://registry.npmjs.org/@commitlint/parse/-/parse-12.1.4.tgz#ba03d54d24ef84f6fd2ff31c5e9998b22d7d0aa1" | |
1026 | + integrity sha512-yqKSAsK2V4X/HaLb/yYdrzs6oD/G48Ilt0EJ2Mp6RJeWYxG14w/Out6JrneWnr/cpzemyN5hExOg6+TB19H/Lw== | |
1010 | 1027 | dependencies: |
1011 | - "@commitlint/types" "^12.1.1" | |
1028 | + "@commitlint/types" "^12.1.4" | |
1012 | 1029 | conventional-changelog-angular "^5.0.11" |
1013 | 1030 | conventional-commits-parser "^3.0.0" |
1014 | 1031 | |
1015 | -"@commitlint/read@^12.1.1": | |
1016 | - version "12.1.1" | |
1017 | - resolved "https://registry.npmjs.org/@commitlint/read/-/read-12.1.1.tgz#22a2d7fd1eab5e38b9b262311af28ac42f9a5097" | |
1018 | - integrity sha512-1k0CQEoZIdixvmqZRKEcWdj2XiKS7SlizEOJ1SE99Qui5d5FlBey8eaooTGgmpR6zObpIHJehtEPzM3VzUT3qA== | |
1032 | +"@commitlint/read@^12.1.4": | |
1033 | + version "12.1.4" | |
1034 | + resolved "https://registry.npmjs.org/@commitlint/read/-/read-12.1.4.tgz#552fda42ef185d5b578beb6f626a5f8b282de3a6" | |
1035 | + integrity sha512-TnPQSJgD8Aod5Xeo9W4SaYKRZmIahukjcCWJ2s5zb3ZYSmj6C85YD9cR5vlRyrZjj78ItLUV/X4FMWWVIS38Jg== | |
1019 | 1036 | dependencies: |
1020 | - "@commitlint/top-level" "^12.1.1" | |
1021 | - "@commitlint/types" "^12.1.1" | |
1037 | + "@commitlint/top-level" "^12.1.4" | |
1038 | + "@commitlint/types" "^12.1.4" | |
1022 | 1039 | fs-extra "^9.0.0" |
1023 | 1040 | git-raw-commits "^2.0.0" |
1024 | 1041 | |
... | ... | @@ -1032,25 +1049,35 @@ |
1032 | 1049 | resolve-from "^5.0.0" |
1033 | 1050 | resolve-global "^1.0.0" |
1034 | 1051 | |
1035 | -"@commitlint/rules@^12.1.1": | |
1036 | - version "12.1.1" | |
1037 | - resolved "https://registry.npmjs.org/@commitlint/rules/-/rules-12.1.1.tgz#d59182a837d2addf301a3a4ef83316ae7e70248f" | |
1038 | - integrity sha512-oCcLF/ykcJfhM2DeeaDyrgdaiuKsqIPNocugdPj2WEyhSYqmx1/u18CV96LAtW+WyyiOLCCeiZwiQutx3T5nXg== | |
1052 | +"@commitlint/resolve-extends@^12.1.4": | |
1053 | + version "12.1.4" | |
1054 | + resolved "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-12.1.4.tgz#e758ed7dcdf942618b9f603a7c28a640f6a0802a" | |
1055 | + integrity sha512-R9CoUtsXLd6KSCfsZly04grsH6JVnWFmVtWgWs1KdDpdV+G3TSs37tColMFqglpkx3dsWu8dsPD56+D9YnJfqg== | |
1039 | 1056 | dependencies: |
1040 | - "@commitlint/ensure" "^12.1.1" | |
1041 | - "@commitlint/message" "^12.1.1" | |
1042 | - "@commitlint/to-lines" "^12.1.1" | |
1043 | - "@commitlint/types" "^12.1.1" | |
1057 | + import-fresh "^3.0.0" | |
1058 | + lodash "^4.17.19" | |
1059 | + resolve-from "^5.0.0" | |
1060 | + resolve-global "^1.0.0" | |
1044 | 1061 | |
1045 | -"@commitlint/to-lines@^12.1.1": | |
1046 | - version "12.1.1" | |
1047 | - resolved "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-12.1.1.tgz#40fbed1767d637249ce49b311a51909d8361ecf8" | |
1048 | - integrity sha512-W23AH2XF5rI27MOAPSSr0TUDoRe7ZbFoRtYhFnPu2MBmcuDA9Tmfd9N5sM2tBXtdE26uq3SazwKqGt1OoGAilQ== | |
1062 | +"@commitlint/rules@^12.1.4": | |
1063 | + version "12.1.4" | |
1064 | + resolved "https://registry.npmjs.org/@commitlint/rules/-/rules-12.1.4.tgz#0e141b08caa3d7bdc48aa784baa8baff3efd64db" | |
1065 | + integrity sha512-W8m6ZSjg7RuIsIfzQiFHa48X5mcPXeKT9yjBxVmjHvYfS2FDBf1VxCQ7vO0JTVIdV4ohjZ0eKg/wxxUuZHJAZg== | |
1066 | + dependencies: | |
1067 | + "@commitlint/ensure" "^12.1.4" | |
1068 | + "@commitlint/message" "^12.1.4" | |
1069 | + "@commitlint/to-lines" "^12.1.4" | |
1070 | + "@commitlint/types" "^12.1.4" | |
1049 | 1071 | |
1050 | -"@commitlint/top-level@^12.1.1": | |
1051 | - version "12.1.1" | |
1052 | - resolved "https://registry.npmjs.org/@commitlint/top-level/-/top-level-12.1.1.tgz#228df8fc36b6d7ea7ad149badfb6ef53dbc7001d" | |
1053 | - integrity sha512-g7uRbr81QEIg+pbii0OkE17Zh/2C/f6dSmiMDVRn1S0+hNHR1bENCh18hVUKcV/qKTUsKkFlhhWXM9mQBfxQJw== | |
1072 | +"@commitlint/to-lines@^12.1.4": | |
1073 | + version "12.1.4" | |
1074 | + resolved "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-12.1.4.tgz#caa582dbf121f377a0588bb64e25c4854843cd25" | |
1075 | + integrity sha512-TParumvbi8bdx3EdLXz2MaX+e15ZgoCqNUgqHsRLwyqLUTRbqCVkzrfadG1UcMQk8/d5aMbb327ZKG3Q4BRorw== | |
1076 | + | |
1077 | +"@commitlint/top-level@^12.1.4": | |
1078 | + version "12.1.4" | |
1079 | + resolved "https://registry.npmjs.org/@commitlint/top-level/-/top-level-12.1.4.tgz#96d5c715bfc1bdf86dfcf11b67fc2cf7658c7a6e" | |
1080 | + integrity sha512-d4lTJrOT/dXlpY+NIt4CUl77ciEzYeNVc0VFgUQ6VA+b1rqYD2/VWFjBlWVOrklxtSDeKyuEhs36RGrppEFAvg== | |
1054 | 1081 | dependencies: |
1055 | 1082 | find-up "^5.0.0" |
1056 | 1083 | |
... | ... | @@ -1061,6 +1088,13 @@ |
1061 | 1088 | dependencies: |
1062 | 1089 | chalk "^4.0.0" |
1063 | 1090 | |
1091 | +"@commitlint/types@^12.1.4": | |
1092 | + version "12.1.4" | |
1093 | + resolved "https://registry.npmjs.org/@commitlint/types/-/types-12.1.4.tgz#9618a5dc8991fb58e6de6ed89d7bf712fa74ba7e" | |
1094 | + integrity sha512-KRIjdnWNUx6ywz+SJvjmNCbQKcKP6KArhjZhY2l+CWKxak0d77SOjggkMwFTiSgLODOwmuLTbarR2ZfWPiPMlw== | |
1095 | + dependencies: | |
1096 | + chalk "^4.0.0" | |
1097 | + | |
1064 | 1098 | "@ctrl/tinycolor@^3.3.1": |
1065 | 1099 | version "3.4.0" |
1066 | 1100 | resolved "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.4.0.tgz#c3c5ae543c897caa9c2a68630bed355be5f9990f" |
... | ... | @@ -1145,17 +1179,17 @@ |
1145 | 1179 | dependencies: |
1146 | 1180 | cross-fetch "^3.0.6" |
1147 | 1181 | |
1148 | -"@iconify/iconify@^2.0.0": | |
1149 | - version "2.0.0" | |
1150 | - resolved "https://registry.npmjs.org/@iconify/iconify/-/iconify-2.0.0.tgz#f87513410f61a749c4e74b9b84d90ce27d19f3cb" | |
1151 | - integrity sha512-9D+LKG9lC8Wqc6m1u1HMzHO13VWoHy7pqJEJXQW94WPn22nRGCjvs62xfj3VTSIlxucn+XHQpNH9GsrugGuKDw== | |
1182 | +"@iconify/iconify@^2.0.1": | |
1183 | + version "2.0.1" | |
1184 | + resolved "https://registry.npmjs.org/@iconify/iconify/-/iconify-2.0.1.tgz#4927812922d50b378699694b5e72e22a1acc9d2f" | |
1185 | + integrity sha512-heGCmdiRc58+TQjKPiem8cmNZj7YXDG3TphRVw0UGjsz8/OKgN2ncBPy1kfFIiv5aKhUsij6WVTfOMUS7YgTbA== | |
1152 | 1186 | dependencies: |
1153 | 1187 | cross-fetch "^3.0.6" |
1154 | 1188 | |
1155 | -"@iconify/json@^1.1.340": | |
1156 | - version "1.1.340" | |
1157 | - resolved "https://registry.npmjs.org/@iconify/json/-/json-1.1.340.tgz#d34de18ecc14395cc984e73f3651565caeac1614" | |
1158 | - integrity sha512-VgL3ALV+Aqy0hnAaAi1W+5KzjVIrCh2Xu+52SJRtraoOpUw37VQArPAyVxJZGSK8NoanD7c4XOAcppaxnXqBXA== | |
1189 | +"@iconify/json@^1.1.343": | |
1190 | + version "1.1.343" | |
1191 | + resolved "https://registry.npmjs.org/@iconify/json/-/json-1.1.343.tgz#8f4449c1d47bcd896574f86f1fab91afe77414da" | |
1192 | + integrity sha512-SrBsYKeWW2ikMva8OawOK57Eem2lLrMpNwA7+gqZ6jT+NF/8xFLVtm1mFwUdpeZDBUHg5niiETRE/94W8tA6Kw== | |
1159 | 1193 | |
1160 | 1194 | "@intlify/core-base@9.0.0": |
1161 | 1195 | version "9.0.0" |
... | ... | @@ -1195,22 +1229,23 @@ |
1195 | 1229 | resolved "https://registry.npmjs.org/@intlify/shared/-/shared-9.0.0.tgz#d85b3b5f9033f377c5cf2202cf2459aa49948f36" |
1196 | 1230 | integrity sha512-0r4v7dnY8g/Jfx2swUWy2GyfH/WvIpWvkU4OIupvxDTWiE8RhcpbOCVvqpVh/xGi0proHQ/r2Dhc0QSItUsfDQ== |
1197 | 1231 | |
1198 | -"@logicflow/core@^0.3.6": | |
1199 | - version "0.3.6" | |
1200 | - resolved "https://registry.npmjs.org/@logicflow/core/-/core-0.3.6.tgz#d1083c484d005a0a222fa54ea840c643ebb52ca3" | |
1201 | - integrity sha512-wWjixeFxqS7L+UCjAkhbw3Vgx4H3Hb8Kzckcg1+CefTAvINFwROInGtyzxhnZE4yjoHgxRSyPlCq2qYy0d3EcA== | |
1232 | +"@logicflow/core@^0.4.3": | |
1233 | + version "0.4.3" | |
1234 | + resolved "https://registry.npmjs.org/@logicflow/core/-/core-0.4.3.tgz#64de82d487830ea1271b0f708ca7ce4df150a8b0" | |
1235 | + integrity sha512-QmUR9QfVBo1F8+Uu/l9oCtpAD414dc/x5gY7HGfQ22WEgbktnuEBwjPyPcjVxNZm7nQDrIbFJwj/DD9YpW1FMQ== | |
1202 | 1236 | dependencies: |
1203 | 1237 | "@types/mousetrap" "^1.6.4" |
1204 | 1238 | mousetrap "^1.6.5" |
1205 | 1239 | preact "^10.4.8" |
1206 | 1240 | |
1207 | -"@logicflow/extension@^0.3.6": | |
1208 | - version "0.3.6" | |
1209 | - resolved "https://registry.npmjs.org/@logicflow/extension/-/extension-0.3.6.tgz#53ebc48128edf6d1d03061b5467517c4f0efb5ee" | |
1210 | - integrity sha512-3bvq5GFhqzsKx/wA2O/CBD/EMO2qN8/+2saZxRqru7JXIFFZn1YwzFvrbNQ7eZvihuG+cEF7XCKZEW+abV2Nyw== | |
1241 | +"@logicflow/extension@^0.4.3": | |
1242 | + version "0.4.3" | |
1243 | + resolved "https://registry.npmjs.org/@logicflow/extension/-/extension-0.4.3.tgz#5cb14df361cb9d856d1454643a8b008737855b4a" | |
1244 | + integrity sha512-2NqydJiy577vKCrjKOGs94rtPnagc1JUz5XHXGhynv45GKEz77UwzlZa72EYo+TpjCV6sbYJUCQR8fO9TQuzQQ== | |
1211 | 1245 | dependencies: |
1212 | - "@logicflow/core" "^0.3.6" | |
1246 | + "@logicflow/core" "^0.4.3" | |
1213 | 1247 | ids "^1.0.0" |
1248 | + preact "^10.4.8" | |
1214 | 1249 | |
1215 | 1250 | "@nodelib/fs.scandir@2.1.4": |
1216 | 1251 | version "2.1.4" |
... | ... | @@ -1694,13 +1729,13 @@ |
1694 | 1729 | "@types/unist" "*" |
1695 | 1730 | "@types/vfile-message" "*" |
1696 | 1731 | |
1697 | -"@typescript-eslint/eslint-plugin@^4.22.1": | |
1698 | - version "4.22.1" | |
1699 | - resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.22.1.tgz#6bcdbaa4548553ab861b4e5f34936ead1349a543" | |
1700 | - integrity sha512-kVTAghWDDhsvQ602tHBc6WmQkdaYbkcTwZu+7l24jtJiYvm9l+/y/b2BZANEezxPDiX5MK2ZecE+9BFi/YJryw== | |
1732 | +"@typescript-eslint/eslint-plugin@^4.23.0": | |
1733 | + version "4.23.0" | |
1734 | + resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.23.0.tgz#29d3c9c81f6200b1fd6d8454cfb007ba176cde80" | |
1735 | + integrity sha512-tGK1y3KIvdsQEEgq6xNn1DjiFJtl+wn8JJQiETtCbdQxw1vzjXyAaIkEmO2l6Nq24iy3uZBMFQjZ6ECf1QdgGw== | |
1701 | 1736 | dependencies: |
1702 | - "@typescript-eslint/experimental-utils" "4.22.1" | |
1703 | - "@typescript-eslint/scope-manager" "4.22.1" | |
1737 | + "@typescript-eslint/experimental-utils" "4.23.0" | |
1738 | + "@typescript-eslint/scope-manager" "4.23.0" | |
1704 | 1739 | debug "^4.1.1" |
1705 | 1740 | functional-red-black-tree "^1.0.1" |
1706 | 1741 | lodash "^4.17.15" |
... | ... | @@ -1708,66 +1743,66 @@ |
1708 | 1743 | semver "^7.3.2" |
1709 | 1744 | tsutils "^3.17.1" |
1710 | 1745 | |
1711 | -"@typescript-eslint/experimental-utils@4.22.1": | |
1712 | - version "4.22.1" | |
1713 | - resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.22.1.tgz#3938a5c89b27dc9a39b5de63a62ab1623ab27497" | |
1714 | - integrity sha512-svYlHecSMCQGDO2qN1v477ax/IDQwWhc7PRBiwAdAMJE7GXk5stF4Z9R/8wbRkuX/5e9dHqbIWxjeOjckK3wLQ== | |
1746 | +"@typescript-eslint/experimental-utils@4.23.0": | |
1747 | + version "4.23.0" | |
1748 | + resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.23.0.tgz#f2059434cd6e5672bfeab2fb03b7c0a20622266f" | |
1749 | + integrity sha512-WAFNiTDnQfrF3Z2fQ05nmCgPsO5o790vOhmWKXbbYQTO9erE1/YsFot5/LnOUizLzU2eeuz6+U/81KV5/hFTGA== | |
1715 | 1750 | dependencies: |
1716 | 1751 | "@types/json-schema" "^7.0.3" |
1717 | - "@typescript-eslint/scope-manager" "4.22.1" | |
1718 | - "@typescript-eslint/types" "4.22.1" | |
1719 | - "@typescript-eslint/typescript-estree" "4.22.1" | |
1752 | + "@typescript-eslint/scope-manager" "4.23.0" | |
1753 | + "@typescript-eslint/types" "4.23.0" | |
1754 | + "@typescript-eslint/typescript-estree" "4.23.0" | |
1720 | 1755 | eslint-scope "^5.0.0" |
1721 | 1756 | eslint-utils "^2.0.0" |
1722 | 1757 | |
1723 | -"@typescript-eslint/parser@^4.22.1": | |
1724 | - version "4.22.1" | |
1725 | - resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.22.1.tgz#a95bda0fd01d994a15fc3e99dc984294f25c19cc" | |
1726 | - integrity sha512-l+sUJFInWhuMxA6rtirzjooh8cM/AATAe3amvIkqKFeMzkn85V+eLzb1RyuXkHak4dLfYzOmF6DXPyflJvjQnw== | |
1758 | +"@typescript-eslint/parser@^4.23.0": | |
1759 | + version "4.23.0" | |
1760 | + resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.23.0.tgz#239315d38e42e852bef43a4b0b01bef78f78911c" | |
1761 | + integrity sha512-wsvjksHBMOqySy/Pi2Q6UuIuHYbgAMwLczRl4YanEPKW5KVxI9ZzDYh3B5DtcZPQTGRWFJrfcbJ6L01Leybwug== | |
1727 | 1762 | dependencies: |
1728 | - "@typescript-eslint/scope-manager" "4.22.1" | |
1729 | - "@typescript-eslint/types" "4.22.1" | |
1730 | - "@typescript-eslint/typescript-estree" "4.22.1" | |
1763 | + "@typescript-eslint/scope-manager" "4.23.0" | |
1764 | + "@typescript-eslint/types" "4.23.0" | |
1765 | + "@typescript-eslint/typescript-estree" "4.23.0" | |
1731 | 1766 | debug "^4.1.1" |
1732 | 1767 | |
1733 | -"@typescript-eslint/scope-manager@4.22.1": | |
1734 | - version "4.22.1" | |
1735 | - resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.22.1.tgz#5bb357f94f9cd8b94e6be43dd637eb73b8f355b4" | |
1736 | - integrity sha512-d5bAiPBiessSmNi8Amq/RuLslvcumxLmyhf1/Xa9IuaoFJ0YtshlJKxhlbY7l2JdEk3wS0EnmnfeJWSvADOe0g== | |
1768 | +"@typescript-eslint/scope-manager@4.23.0": | |
1769 | + version "4.23.0" | |
1770 | + resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.23.0.tgz#8792ef7eacac122e2ec8fa2d30a59b8d9a1f1ce4" | |
1771 | + integrity sha512-ZZ21PCFxPhI3n0wuqEJK9omkw51wi2bmeKJvlRZPH5YFkcawKOuRMQMnI8mH6Vo0/DoHSeZJnHiIx84LmVQY+w== | |
1737 | 1772 | dependencies: |
1738 | - "@typescript-eslint/types" "4.22.1" | |
1739 | - "@typescript-eslint/visitor-keys" "4.22.1" | |
1773 | + "@typescript-eslint/types" "4.23.0" | |
1774 | + "@typescript-eslint/visitor-keys" "4.23.0" | |
1740 | 1775 | |
1741 | -"@typescript-eslint/types@4.22.1": | |
1742 | - version "4.22.1" | |
1743 | - resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.22.1.tgz#bf99c6cec0b4a23d53a61894816927f2adad856a" | |
1744 | - integrity sha512-2HTkbkdAeI3OOcWbqA8hWf/7z9c6gkmnWNGz0dKSLYLWywUlkOAQ2XcjhlKLj5xBFDf8FgAOF5aQbnLRvgNbCw== | |
1776 | +"@typescript-eslint/types@4.23.0": | |
1777 | + version "4.23.0" | |
1778 | + resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.23.0.tgz#da1654c8a5332f4d1645b2d9a1c64193cae3aa3b" | |
1779 | + integrity sha512-oqkNWyG2SLS7uTWLZf6Sr7Dm02gA5yxiz1RP87tvsmDsguVATdpVguHr4HoGOcFOpCvx9vtCSCyQUGfzq28YCw== | |
1745 | 1780 | |
1746 | -"@typescript-eslint/typescript-estree@4.22.1": | |
1747 | - version "4.22.1" | |
1748 | - resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.22.1.tgz#dca379eead8cdfd4edc04805e83af6d148c164f9" | |
1749 | - integrity sha512-p3We0pAPacT+onSGM+sPR+M9CblVqdA9F1JEdIqRVlxK5Qth4ochXQgIyb9daBomyQKAXbygxp1aXQRV0GC79A== | |
1781 | +"@typescript-eslint/typescript-estree@4.23.0": | |
1782 | + version "4.23.0" | |
1783 | + resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.23.0.tgz#0753b292097523852428a6f5a1aa8ccc1aae6cd9" | |
1784 | + integrity sha512-5Sty6zPEVZF5fbvrZczfmLCOcby3sfrSPu30qKoY1U3mca5/jvU5cwsPb/CO6Q3ByRjixTMIVsDkqwIxCf/dMw== | |
1750 | 1785 | dependencies: |
1751 | - "@typescript-eslint/types" "4.22.1" | |
1752 | - "@typescript-eslint/visitor-keys" "4.22.1" | |
1786 | + "@typescript-eslint/types" "4.23.0" | |
1787 | + "@typescript-eslint/visitor-keys" "4.23.0" | |
1753 | 1788 | debug "^4.1.1" |
1754 | 1789 | globby "^11.0.1" |
1755 | 1790 | is-glob "^4.0.1" |
1756 | 1791 | semver "^7.3.2" |
1757 | 1792 | tsutils "^3.17.1" |
1758 | 1793 | |
1759 | -"@typescript-eslint/visitor-keys@4.22.1": | |
1760 | - version "4.22.1" | |
1761 | - resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.22.1.tgz#6045ae25a11662c671f90b3a403d682dfca0b7a6" | |
1762 | - integrity sha512-WPkOrIRm+WCLZxXQHCi+WG8T2MMTUFR70rWjdWYddLT7cEfb2P4a3O/J2U1FBVsSFTocXLCoXWY6MZGejeStvQ== | |
1794 | +"@typescript-eslint/visitor-keys@4.23.0": | |
1795 | + version "4.23.0" | |
1796 | + resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.23.0.tgz#7215cc977bd3b4ef22467b9023594e32f9e4e455" | |
1797 | + integrity sha512-5PNe5cmX9pSifit0H+nPoQBXdbNzi5tOEec+3riK+ku4e3er37pKxMKDH5Ct5Y4fhWxcD4spnlYjxi9vXbSpwg== | |
1763 | 1798 | dependencies: |
1764 | - "@typescript-eslint/types" "4.22.1" | |
1799 | + "@typescript-eslint/types" "4.23.0" | |
1765 | 1800 | eslint-visitor-keys "^2.0.0" |
1766 | 1801 | |
1767 | -"@vitejs/plugin-legacy@^1.3.3": | |
1768 | - version "1.3.3" | |
1769 | - resolved "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-1.3.3.tgz#d17d4479aa888b164433ce72df0af565ff1e74f0" | |
1770 | - integrity sha512-zDNUxkmIVzLFoTAGdFn19WfvXXIyO1CyT3y1eJkRJkM7JIa4g/KcacT2XNmYhT5ZXEQpYaSzdidZ/IChPhAmjw== | |
1802 | +"@vitejs/plugin-legacy@^1.3.4": | |
1803 | + version "1.3.4" | |
1804 | + resolved "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-1.3.4.tgz#0618bc2e92af97deb07dfb2d32b7aa2528123d66" | |
1805 | + integrity sha512-T6+eo9Je05i45atk/e2ONiaULf5IFYgQ7UOQN9mu9lITVk9Oxe7v5h56vN8ZsN1g52/UBXRlG99nQw4CgKJFDQ== | |
1771 | 1806 | dependencies: |
1772 | 1807 | "@babel/standalone" "^7.13.12" |
1773 | 1808 | core-js "^3.8.2" |
... | ... | @@ -1901,10 +1936,15 @@ |
1901 | 1936 | "@vue/compiler-dom" "3.0.11" |
1902 | 1937 | "@vue/shared" "3.0.11" |
1903 | 1938 | |
1939 | +"@vue/devtools-api@^6.0.0-beta.10": | |
1940 | + version "6.0.0-beta.10" | |
1941 | + resolved "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.0.0-beta.10.tgz#f39da7618cee292e39c7274227c34163e30eb3ca" | |
1942 | + integrity sha512-nktQYRnIFrh4DdXiCBjHnsHOMZXDIVcP9qlm/DMfxmjJMtpMGrSZCOKP8j7kDhObNHyqlicwoGLd+a4hf4x9ww== | |
1943 | + | |
1904 | 1944 | "@vue/devtools-api@^6.0.0-beta.5": |
1905 | - version "6.0.0-beta.7" | |
1906 | - resolved "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.0.0-beta.7.tgz#1d306613c93b9a837a3776b1b9255502662f850f" | |
1907 | - integrity sha512-mIfqX8ZF6s2ulelIzfxGk9sFoigpoeK/2/DlWrtBGWfvwaK3kR1P2bxNkZ0LbJeuKHfcRP6hGZtGist7nxUN9A== | |
1945 | + version "6.0.0-beta.9" | |
1946 | + resolved "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.0.0-beta.9.tgz#7231f173c9b91cb2f3d4a209c7c0e380a7f5e417" | |
1947 | + integrity sha512-Qo5OXPt/+k26ffg/ZbyR3Ldlmp5uttfPP3B1G3Uo1Ha/DmnqeUlvwebVGDT3EXM6RNL5SoW2gvVLyFq58+8nZg== | |
1908 | 1948 | |
1909 | 1949 | "@vue/reactivity@3.0.11", "@vue/reactivity@^3.0.11": |
1910 | 1950 | version "3.0.11" |
... | ... | @@ -1935,18 +1975,18 @@ |
1935 | 1975 | resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.11.tgz#20d22dd0da7d358bb21c17f9bde8628152642c77" |
1936 | 1976 | integrity sha512-b+zB8A2so8eCE0JsxjL24J7vdGl8rzPQ09hZNhystm+KqSbKcAej1A+Hbva1rCMmTTqA+hFnUSDc5kouEo0JzA== |
1937 | 1977 | |
1938 | -"@vueuse/core@^4.9.2": | |
1939 | - version "4.9.2" | |
1940 | - resolved "https://registry.npmjs.org/@vueuse/core/-/core-4.9.2.tgz#8e5ac3232bac0dd07ce91b671ad2a73d2e1fb76e" | |
1941 | - integrity sha512-LI2r/flm2pJ2QfKXJ22IHID92F+l0T8XAc3MFh5AZS+JGVqTIC19elzIxnIugCAXl6nkR7pQitwrndZGy4TzEg== | |
1978 | +"@vueuse/core@^4.9.3": | |
1979 | + version "4.9.3" | |
1980 | + resolved "https://registry.npmjs.org/@vueuse/core/-/core-4.9.3.tgz#ae8cb514677480e258bab4bbe7989ae609d76513" | |
1981 | + integrity sha512-Ro9rsziMaZUSVMUVhOO4GvykebSjDHnx2pC78tmIiYBGjF9e6RW6zXQdRxk2Ro9SqOw7J4Gc2dlv3J2I/2mNkg== | |
1942 | 1982 | dependencies: |
1943 | - "@vueuse/shared" "4.9.2" | |
1983 | + "@vueuse/shared" "4.9.3" | |
1944 | 1984 | vue-demi "*" |
1945 | 1985 | |
1946 | -"@vueuse/shared@4.9.2": | |
1947 | - version "4.9.2" | |
1948 | - resolved "https://registry.npmjs.org/@vueuse/shared/-/shared-4.9.2.tgz#5dc3edec3b334733aed3345be182eebb1ac9f239" | |
1949 | - integrity sha512-VMIBX7NWfA3Y21OcCXieGEbclhCzYB7a0lDn6tS1eKephH3STAEWYbz+ucxreHI18XQ8Iip8ee7PYHGXNXpg1g== | |
1986 | +"@vueuse/shared@4.9.3": | |
1987 | + version "4.9.3" | |
1988 | + resolved "https://registry.npmjs.org/@vueuse/shared/-/shared-4.9.3.tgz#3af640176394607d3be94e4b6fbb1bf2e63468ea" | |
1989 | + integrity sha512-PNnMx3OLsIHLYuhh38y/A+RrFKFwCPR2wNNl76/OaSkn89MqXJKtR4yb0BbfebaNi1hMBorl29wxPziNAeARrA== | |
1950 | 1990 | dependencies: |
1951 | 1991 | vue-demi "*" |
1952 | 1992 | |
... | ... | @@ -2090,10 +2130,10 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: |
2090 | 2130 | dependencies: |
2091 | 2131 | color-convert "^2.0.1" |
2092 | 2132 | |
2093 | -ant-design-vue@^2.1.3: | |
2094 | - version "2.1.3" | |
2095 | - resolved "https://registry.npmjs.org/ant-design-vue/-/ant-design-vue-2.1.3.tgz#d535f4f88f7405c1c2dfdf27d0d1b39438b28a21" | |
2096 | - integrity sha512-pJy8fiMXXkqrFaarTWdi3gkJWfkmR9xomdTj2/YCoU9lIXT7O++JHhamDQkUyHQXCj1OHaLwWp2POeNWS1gaUQ== | |
2133 | +ant-design-vue@^2.1.6: | |
2134 | + version "2.1.6" | |
2135 | + resolved "https://registry.npmjs.org/ant-design-vue/-/ant-design-vue-2.1.6.tgz#c51cdc858e1b1b8b569f5435eb487f53a3f1745e" | |
2136 | + integrity sha512-qICxb6Y4f7QuSuh/jbLhZA9SkUBnP9xYfy/E6yD7+1fg04aAzmRK8oLv8ETuGTrROVdSVeic9v/NS2BXEuuARg== | |
2097 | 2137 | dependencies: |
2098 | 2138 | "@ant-design-vue/use" "^0.0.1-0" |
2099 | 2139 | "@ant-design/icons-vue" "^6.0.0" |
... | ... | @@ -2103,6 +2143,7 @@ ant-design-vue@^2.1.3: |
2103 | 2143 | async-validator "^3.3.0" |
2104 | 2144 | dom-align "^1.10.4" |
2105 | 2145 | dom-scroll-into-view "^2.0.0" |
2146 | + lodash "^4.17.21" | |
2106 | 2147 | lodash-es "^4.17.15" |
2107 | 2148 | moment "^2.27.0" |
2108 | 2149 | omit.js "^2.0.0" |
... | ... | @@ -3870,10 +3911,10 @@ dot-prop@^5.1.0: |
3870 | 3911 | dependencies: |
3871 | 3912 | is-obj "^2.0.0" |
3872 | 3913 | |
3873 | -dotenv@^9.0.1: | |
3874 | - version "9.0.1" | |
3875 | - resolved "https://registry.npmjs.org/dotenv/-/dotenv-9.0.1.tgz#a889a28a3a515812dde1e7f8183ef5cdf3186b97" | |
3876 | - integrity sha512-W8FNeNnnvJoYfgkFRKzp8kTgz0T2YY4TJ9xy1Ma0hSebPTK8iquRtpG12TUrSTX5zIN9D/wSLEEuI+Ad35tlyw== | |
3914 | +dotenv@^9.0.2: | |
3915 | + version "9.0.2" | |
3916 | + resolved "https://registry.npmjs.org/dotenv/-/dotenv-9.0.2.tgz#dacc20160935a37dea6364aa1bef819fb9b6ab05" | |
3917 | + integrity sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg== | |
3877 | 3918 | |
3878 | 3919 | download@^6.2.2: |
3879 | 3920 | version "6.2.5" |
... | ... | @@ -4080,7 +4121,7 @@ esbuild@^0.11.4, esbuild@^0.11.5, esbuild@^0.11.6: |
4080 | 4121 | resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.11.10.tgz#f5d39e4d9cc130b78d751664fef1b663240f5545" |
4081 | 4122 | integrity sha512-XvGbf+UreVFA24Tlk6sNOqNcvF2z49XAZt4E7A4H80+yqn944QOLTTxaU0lkdYNtZKFiITNea+VxmtrfjvnLPA== |
4082 | 4123 | |
4083 | -esbuild@^0.9.2, esbuild@^0.9.3: | |
4124 | +esbuild@^0.9.2: | |
4084 | 4125 | version "0.9.7" |
4085 | 4126 | resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.9.7.tgz#ea0d639cbe4b88ec25fbed4d6ff00c8d788ef70b" |
4086 | 4127 | integrity sha512-VtUf6aQ89VTmMLKrWHYG50uByMF4JQlVysb8dmg6cOgW8JnFCipmz7p+HNBl+RR3LLCuBxFGVauAe2wfnF9bLg== |
... | ... | @@ -4868,16 +4909,16 @@ get-proxy@^2.0.0: |
4868 | 4909 | dependencies: |
4869 | 4910 | npm-conf "^1.1.0" |
4870 | 4911 | |
4871 | -get-stdin@8.0.0, get-stdin@^8.0.0: | |
4872 | - version "8.0.0" | |
4873 | - resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53" | |
4874 | - integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg== | |
4875 | - | |
4876 | 4912 | get-stdin@^4.0.1: |
4877 | 4913 | version "4.0.1" |
4878 | 4914 | resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" |
4879 | 4915 | integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= |
4880 | 4916 | |
4917 | +get-stdin@^8.0.0: | |
4918 | + version "8.0.0" | |
4919 | + resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53" | |
4920 | + integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg== | |
4921 | + | |
4881 | 4922 | get-stream@3.0.0, get-stream@^3.0.0: |
4882 | 4923 | version "3.0.0" |
4883 | 4924 | resolved "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" |
... | ... | @@ -7042,6 +7083,11 @@ nanoid@^3.1.22: |
7042 | 7083 | resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz#b35f8fb7d151990a8aebd5aa5015c03cf726f844" |
7043 | 7084 | integrity sha512-/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ== |
7044 | 7085 | |
7086 | +nanoid@^3.1.23: | |
7087 | + version "3.1.23" | |
7088 | + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz#f744086ce7c2bc47ee0a8472574d5c78e4183a81" | |
7089 | + integrity sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw== | |
7090 | + | |
7045 | 7091 | nanomatch@^1.2.1, nanomatch@^1.2.9: |
7046 | 7092 | version "1.2.13" |
7047 | 7093 | resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" |
... | ... | @@ -7710,10 +7756,10 @@ pify@^4.0.1: |
7710 | 7756 | resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" |
7711 | 7757 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== |
7712 | 7758 | |
7713 | -pinia@2.0.0-alpha.13: | |
7714 | - version "2.0.0-alpha.13" | |
7715 | - resolved "https://registry.npmjs.org/pinia/-/pinia-2.0.0-alpha.13.tgz#d48e6efec11d38201e20770bc02b168e2157a9f7" | |
7716 | - integrity sha512-3r9fpUi5Uai48vjeTXzcHAvlDjYvx/9mNtWiO5QyWy4zqfn7YjvOiBCHXH9r1jwo4LakZzG/ppr5i6sr/63fYQ== | |
7759 | +pinia@2.0.0-alpha.16: | |
7760 | + version "2.0.0-alpha.16" | |
7761 | + resolved "https://registry.npmjs.org/pinia/-/pinia-2.0.0-alpha.16.tgz#0693b2260603a7d701fe3fa0e84bbec535746ad1" | |
7762 | + integrity sha512-E2ctjES/G5X3qdbRmoj1bddVPlXKXTH97VMnETqPo2IVps2uPt0J0XTKjNsm02ofBWQc/0arUq+OLrMUh8Yenw== | |
7717 | 7763 | |
7718 | 7764 | pinkie-promise@^2.0.0: |
7719 | 7765 | version "2.0.1" |
... | ... | @@ -7929,22 +7975,13 @@ postcss@^8.1.10: |
7929 | 7975 | nanoid "^3.1.22" |
7930 | 7976 | source-map "^0.6.1" |
7931 | 7977 | |
7932 | -postcss@^8.2.1: | |
7933 | - version "8.2.10" | |
7934 | - resolved "https://registry.npmjs.org/postcss/-/postcss-8.2.10.tgz#ca7a042aa8aff494b334d0ff3e9e77079f6f702b" | |
7935 | - integrity sha512-b/h7CPV7QEdrqIxtAf2j31U5ef05uBDuvoXv6L51Q4rcS1jdlXAVKJv+atCFdUXYl9dyTHGyoMzIepwowRJjFw== | |
7978 | +postcss@^8.2.10, postcss@^8.2.15: | |
7979 | + version "8.2.15" | |
7980 | + resolved "https://registry.npmjs.org/postcss/-/postcss-8.2.15.tgz#9e66ccf07292817d226fc315cbbf9bc148fbca65" | |
7981 | + integrity sha512-2zO3b26eJD/8rb106Qu2o7Qgg52ND5HPjcyQiK2B98O388h43A448LCslC0dI2P97wCAQRJsFvwTRcXxTKds+Q== | |
7936 | 7982 | dependencies: |
7937 | 7983 | colorette "^1.2.2" |
7938 | - nanoid "^3.1.22" | |
7939 | - source-map "^0.6.1" | |
7940 | - | |
7941 | -postcss@^8.2.14: | |
7942 | - version "8.2.14" | |
7943 | - resolved "https://registry.npmjs.org/postcss/-/postcss-8.2.14.tgz#dcf313eb8247b3ce8078d048c0e8262ca565ad2b" | |
7944 | - integrity sha512-+jD0ZijcvyCqPQo/m/CW0UcARpdFylq04of+Q7RKX6f/Tu+dvpUI/9Sp81+i6/vJThnOBX09Quw0ZLOVwpzX3w== | |
7945 | - dependencies: | |
7946 | - colorette "^1.2.2" | |
7947 | - nanoid "^3.1.22" | |
7984 | + nanoid "^3.1.23" | |
7948 | 7985 | source-map "^0.6.1" |
7949 | 7986 | |
7950 | 7987 | posthtml-parser@^0.2.0, posthtml-parser@^0.2.1: |
... | ... | @@ -8017,10 +8054,10 @@ prettier@^1.16.4, prettier@^1.18.2: |
8017 | 8054 | resolved "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" |
8018 | 8055 | integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== |
8019 | 8056 | |
8020 | -prettier@^2.2.1: | |
8021 | - version "2.2.1" | |
8022 | - resolved "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5" | |
8023 | - integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q== | |
8057 | +prettier@^2.3.0: | |
8058 | + version "2.3.0" | |
8059 | + resolved "https://registry.npmjs.org/prettier/-/prettier-2.3.0.tgz#b6a5bf1284026ae640f17f7ff5658a7567fc0d18" | |
8060 | + integrity sha512-kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w== | |
8024 | 8061 | |
8025 | 8062 | pretty-bytes@^5.3.0, pretty-bytes@^5.6.0: |
8026 | 8063 | version "5.6.0" |
... | ... | @@ -8673,10 +8710,10 @@ rollup-plugin-visualizer@5.5.0: |
8673 | 8710 | source-map "^0.7.3" |
8674 | 8711 | yargs "^16.2.0" |
8675 | 8712 | |
8676 | -rollup@^2.38.5, rollup@^2.43.1, rollup@^2.45.2, rollup@^2.47.0: | |
8677 | - version "2.47.0" | |
8678 | - resolved "https://registry.npmjs.org/rollup/-/rollup-2.47.0.tgz#9d958aeb2c0f6a383cacc0401dff02b6e252664d" | |
8679 | - integrity sha512-rqBjgq9hQfW0vRmz+0S062ORRNJXvwRpzxhFXORvar/maZqY6za3rgQ/p1Glg+j1hnc1GtYyQCPiAei95uTElg== | |
8713 | +rollup@^2.38.5, rollup@^2.43.1, rollup@^2.45.2, rollup@^2.48.0: | |
8714 | + version "2.48.0" | |
8715 | + resolved "https://registry.npmjs.org/rollup/-/rollup-2.48.0.tgz#fceb01ed771f991f29f7bd2ff7838146e55acb74" | |
8716 | + integrity sha512-wl9ZSSSsi5579oscSDYSzGn092tCS076YB+TQrzsGuSfYyJeep8eEWj0eaRjuC5McuMNmcnR8icBqiE/FWNB1A== | |
8680 | 8717 | optionalDependencies: |
8681 | 8718 | fsevents "~2.3.1" |
8682 | 8719 | |
... | ... | @@ -10478,13 +10515,13 @@ vite-plugin-windicss@0.15.10: |
10478 | 10515 | debug "^4.3.2" |
10479 | 10516 | windicss "^2.5.14" |
10480 | 10517 | |
10481 | -vite@2.2.4: | |
10482 | - version "2.2.4" | |
10483 | - resolved "https://registry.npmjs.org/vite/-/vite-2.2.4.tgz#8f9cc85aacab04c850085894b086c8717f12ed16" | |
10484 | - integrity sha512-vnIwSNci+phFMp6krhy+FbYzKL0R67Sdt9mVZ96S27AewrApSJjTqncJcalk8sf60BgcbW4+1C6DFIWkxquO9g== | |
10518 | +vite@2.3.2: | |
10519 | + version "2.3.2" | |
10520 | + resolved "https://registry.npmjs.org/vite/-/vite-2.3.2.tgz#cfac76b04d4dee1c7303b55f563b5b62d32f41fe" | |
10521 | + integrity sha512-QhLdOompDrfkyryCNTts9HE+eJhvhN9ibKNJ5Q8DpQai+6nOsuIlaveZNg67e1O/2QaWqXeBo82eHnAs1De2bQ== | |
10485 | 10522 | dependencies: |
10486 | - esbuild "^0.9.3" | |
10487 | - postcss "^8.2.1" | |
10523 | + esbuild "^0.11.20" | |
10524 | + postcss "^8.2.10" | |
10488 | 10525 | resolve "^1.19.0" |
10489 | 10526 | rollup "^2.38.5" |
10490 | 10527 | optionalDependencies: |
... | ... | @@ -10658,10 +10695,12 @@ vue-json-pretty@^2.0.2: |
10658 | 10695 | resolved "https://registry.yarnpkg.com/vue-json-pretty/-/vue-json-pretty-2.0.2.tgz#cb8f559af15ea3a2ee53b2742672c7791826d6a3" |
10659 | 10696 | integrity sha512-Vn7SX3XR9cfvGRNoTDNID89GmvVUMb7/fLUX3C3n0Qptga0N7hp7Zwspui1I1XN5pE+PeoVghCSYty+bi8KnjA== |
10660 | 10697 | |
10661 | -vue-router@^4.0.6: | |
10662 | - version "4.0.6" | |
10663 | - resolved "https://registry.npmjs.org/vue-router/-/vue-router-4.0.6.tgz#91750db507d26642f225b0ec6064568e5fe448d6" | |
10664 | - integrity sha512-Y04llmK2PyaESj+N33VxLjGCUDuv9t4q2OpItEGU7POZiuQZaugV6cJpE6Qm1sVFtxufodLKN2y2dQl9nk0Reg== | |
10698 | +vue-router@^4.0.8: | |
10699 | + version "4.0.8" | |
10700 | + resolved "https://registry.npmjs.org/vue-router/-/vue-router-4.0.8.tgz#55d4290a3122444edbc91a3cd2492bb1d0cef494" | |
10701 | + integrity sha512-42mWSQaH7CCBQDspQTHv63f34VEnZC20g9QNK4WJ/zW8SdIUeT6TQ2i/78fjF/pVBUPLBWrGhvB7uDnaz7O/pA== | |
10702 | + dependencies: | |
10703 | + "@vue/devtools-api" "^6.0.0-beta.10" | |
10665 | 10704 | |
10666 | 10705 | vue-tsc@^0.1.2: |
10667 | 10706 | version "0.1.2" |
... | ... | @@ -11000,10 +11039,10 @@ xdg-basedir@^3.0.0: |
11000 | 11039 | resolved "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" |
11001 | 11040 | integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ= |
11002 | 11041 | |
11003 | -xlsx@^0.16.9: | |
11004 | - version "0.16.9" | |
11005 | - resolved "https://registry.npmjs.org/xlsx/-/xlsx-0.16.9.tgz#dacd5bb46bda6dd3743940c9c3dc1e2171826256" | |
11006 | - integrity sha512-gxi1I3EasYvgCX1vN9pGyq920Ron4NO8PNfhuoA3Hpq6Y8f0ECXiy4OLrK4QZBnj1jx3QD+8Fq5YZ/3mPZ5iXw== | |
11042 | +xlsx@^0.17.0: | |
11043 | + version "0.17.0" | |
11044 | + resolved "https://registry.npmjs.org/xlsx/-/xlsx-0.17.0.tgz#028176a0140967dcee1817d221678461e47481c8" | |
11045 | + integrity sha512-bZ36FSACiAyjoldey1+7it50PMlDp1pcAJrZKcVZHzKd8BC/z6TQ/QAN8onuqcepifqSznR6uKnjPhaGt6ig9A== | |
11007 | 11046 | dependencies: |
11008 | 11047 | adler-32 "~1.2.0" |
11009 | 11048 | cfb "^1.1.4" | ... | ... |