Commit 480cfb914e78c06eb7784e33465ed91b7d4c3eee
1 parent
0e414ba3
fix: fix antdv console warning
Showing
10 changed files
with
89 additions
and
88 deletions
CHANGELOG.zh_CN.md
package.json
... | ... | @@ -39,7 +39,7 @@ |
39 | 39 | "@logicflow/extension": "^0.5.0", |
40 | 40 | "@vueuse/core": "^5.0.3", |
41 | 41 | "@zxcvbn-ts/core": "^0.3.0", |
42 | - "ant-design-vue": "2.1.6", | |
42 | + "ant-design-vue": "2.2.0-beta.6", | |
43 | 43 | "axios": "^0.21.1", |
44 | 44 | "codemirror": "^5.62.0", |
45 | 45 | "cropperjs": "^1.5.12", |
... | ... | @@ -56,7 +56,7 @@ |
56 | 56 | "sortablejs": "^1.13.0", |
57 | 57 | "tinymce": "^5.8.2", |
58 | 58 | "vditor": "^3.8.5", |
59 | - "vue": "3.0.11", | |
59 | + "vue": "3.1.2", | |
60 | 60 | "vue-i18n": "9.1.6", |
61 | 61 | "vue-json-pretty": "^2.0.2", |
62 | 62 | "vue-router": "^4.0.10", |
... | ... | @@ -86,7 +86,7 @@ |
86 | 86 | "@vitejs/plugin-legacy": "^1.4.2", |
87 | 87 | "@vitejs/plugin-vue": "^1.2.3", |
88 | 88 | "@vitejs/plugin-vue-jsx": "^1.1.5", |
89 | - "@vue/compiler-sfc": "3.0.11", | |
89 | + "@vue/compiler-sfc": "3.1.2", | |
90 | 90 | "@vue/test-utils": "^2.0.0-rc.9", |
91 | 91 | "autoprefixer": "^10.2.6", |
92 | 92 | "commitizen": "^4.2.4", | ... | ... |
src/components/Form/src/hooks/useAdvanced.ts
... | ... | @@ -51,12 +51,7 @@ export default function ({ |
51 | 51 | const debounceUpdateAdvanced = useDebounceFn(updateAdvanced, 30); |
52 | 52 | |
53 | 53 | watch( |
54 | - [ | |
55 | - // TODO | |
56 | - // () => unref(getSchema), | |
57 | - () => advanceState.isAdvanced, | |
58 | - () => unref(realWidthRef), | |
59 | - ], | |
54 | + [() => unref(getSchema), () => advanceState.isAdvanced, () => unref(realWidthRef)], | |
60 | 55 | () => { |
61 | 56 | const { showAdvancedButton } = unref(getProps); |
62 | 57 | if (showAdvancedButton) { | ... | ... |
src/components/Menu/src/components/BasicMenuItem.vue
src/components/Menu/src/components/BasicSubMenuItem.vue
... | ... | @@ -3,6 +3,7 @@ |
3 | 3 | <SubMenu |
4 | 4 | v-if="menuHasChildren(item) && getShowMenu" |
5 | 5 | :class="[theme]" |
6 | + :key="`submenu-${item.path}`" | |
6 | 7 | popupClassName="app-top-menu-popup" |
7 | 8 | > |
8 | 9 | <template #title> |
... | ... | @@ -16,7 +17,6 @@ |
16 | 17 | </template> |
17 | 18 | <script lang="ts"> |
18 | 19 | import type { Menu as MenuType } from '/@/router/types'; |
19 | - | |
20 | 20 | import { defineComponent, computed } from 'vue'; |
21 | 21 | import { Menu } from 'ant-design-vue'; |
22 | 22 | import { useDesign } from '/@/hooks/web/useDesign'; | ... | ... |
src/components/Menu/src/components/MenuItemContent.vue
1 | 1 | <template> |
2 | 2 | <span :class="`${prefixCls}- flex items-center `"> |
3 | - <Icon v-if="getIcon" :icon="getIcon" :size="18" :class="`${prefixCls}-wrapper__icon`" /> | |
3 | + <Icon v-if="getIcon" :icon="getIcon" :size="18" :class="`${prefixCls}-wrapper__icon mr-2`" /> | |
4 | 4 | {{ getI18nName }} |
5 | 5 | </span> |
6 | 6 | </template> | ... | ... |
src/hooks/web/usePermission.ts
... | ... | @@ -75,9 +75,9 @@ export function usePermission() { |
75 | 75 | if (!value) { |
76 | 76 | return def; |
77 | 77 | } |
78 | - const allCodeList = permissionStore.getPermCodeList; | |
78 | + const allCodeList = permissionStore.getPermCodeList as string[]; | |
79 | 79 | if (!isArray(value)) { |
80 | - return allCodeList.includes(value as string); | |
80 | + return allCodeList.includes(value); | |
81 | 81 | } |
82 | 82 | return (intersection(value, allCodeList) as string[]).length > 0; |
83 | 83 | } | ... | ... |
src/hooks/web/useWatermark.ts
... | ... | @@ -2,7 +2,9 @@ import { getCurrentInstance, onBeforeUnmount, ref, Ref, unref } from 'vue'; |
2 | 2 | |
3 | 3 | const domSymbol = Symbol('watermark-dom'); |
4 | 4 | |
5 | -export function useWatermark(appendEl: Ref<HTMLElement | null> = ref(document.body)) { | |
5 | +export function useWatermark( | |
6 | + appendEl: Ref<HTMLElement | null> = ref(document.body) as Ref<HTMLElement> | |
7 | +) { | |
6 | 8 | let func: Fn = () => {}; |
7 | 9 | const id = domSymbol.toString(); |
8 | 10 | const clear = () => { | ... | ... |
tsconfig.json
yarn.lock
... | ... | @@ -1816,7 +1816,7 @@ |
1816 | 1816 | resolved "https://registry.npmjs.org/@types/crypto-js/-/crypto-js-4.0.1.tgz#3a4bd24518b0e6c5940da4e2659eeb2ef0806963" |
1817 | 1817 | integrity sha512-6+OPzqhKX/cx5xh+yO8Cqg3u3alrkhoxhE5ZOdSEv0DOzJ13lwJ6laqGU0Kv6+XDMFmlnGId04LtY22PsFLQUw== |
1818 | 1818 | |
1819 | -"@types/estree@*": | |
1819 | +"@types/estree@*", "@types/estree@^0.0.48": | |
1820 | 1820 | version "0.0.48" |
1821 | 1821 | resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.48.tgz#18dc8091b285df90db2f25aa7d906cfc394b7f74" |
1822 | 1822 | integrity sha512-LfZwXoGUDo0C3me81HXgkBg5CTQYb6xzEl+fNmbO4JdRiSKQ8A0GD1OBBvKAIsbCUgoyAty7m99GqqMQe784ew== |
... | ... | @@ -2316,17 +2316,6 @@ |
2316 | 2316 | html-tags "^3.1.0" |
2317 | 2317 | svg-tags "^1.0.0" |
2318 | 2318 | |
2319 | -"@vue/compiler-core@3.0.11": | |
2320 | - version "3.0.11" | |
2321 | - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.11.tgz#5ef579e46d7b336b8735228758d1c2c505aae69a" | |
2322 | - integrity sha512-6sFj6TBac1y2cWCvYCA8YzHJEbsVkX7zdRs/3yK/n1ilvRqcn983XvpBbnN3v4mZ1UiQycTvOiajJmOgN9EVgw== | |
2323 | - dependencies: | |
2324 | - "@babel/parser" "^7.12.0" | |
2325 | - "@babel/types" "^7.12.0" | |
2326 | - "@vue/shared" "3.0.11" | |
2327 | - estree-walker "^2.0.1" | |
2328 | - source-map "^0.6.1" | |
2329 | - | |
2330 | 2319 | "@vue/compiler-core@3.1.1": |
2331 | 2320 | version "3.1.1" |
2332 | 2321 | resolved "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.1.1.tgz#4f2c5d70eabd454675714cc8bd2b97f6a8efb196" |
... | ... | @@ -2338,13 +2327,16 @@ |
2338 | 2327 | estree-walker "^2.0.1" |
2339 | 2328 | source-map "^0.6.1" |
2340 | 2329 | |
2341 | -"@vue/compiler-dom@3.0.11": | |
2342 | - version "3.0.11" | |
2343 | - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.11.tgz#b15fc1c909371fd671746020ba55b5dab4a730ee" | |
2344 | - integrity sha512-+3xB50uGeY5Fv9eMKVJs2WSRULfgwaTJsy23OIltKgMrynnIj8hTYY2UL97HCoz78aDw1VDXdrBQ4qepWjnQcw== | |
2330 | +"@vue/compiler-core@3.1.2": | |
2331 | + version "3.1.2" | |
2332 | + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.1.2.tgz#31ab1d88e1706a5c7a545faeeb64c31bd0101db0" | |
2333 | + integrity sha512-nHmq7vLjq/XM2IMbZUcKWoH5sPXa2uR/nIKZtjbK5F3TcbnYE/zKsrSUR9WZJ03unlwotNBX1OyxVt9HbWD7/Q== | |
2345 | 2334 | dependencies: |
2346 | - "@vue/compiler-core" "3.0.11" | |
2347 | - "@vue/shared" "3.0.11" | |
2335 | + "@babel/parser" "^7.12.0" | |
2336 | + "@babel/types" "^7.12.0" | |
2337 | + "@vue/shared" "3.1.2" | |
2338 | + estree-walker "^2.0.1" | |
2339 | + source-map "^0.6.1" | |
2348 | 2340 | |
2349 | 2341 | "@vue/compiler-dom@3.1.1", "@vue/compiler-dom@^3.0.11": |
2350 | 2342 | version "3.1.1" |
... | ... | @@ -2354,17 +2346,26 @@ |
2354 | 2346 | "@vue/compiler-core" "3.1.1" |
2355 | 2347 | "@vue/shared" "3.1.1" |
2356 | 2348 | |
2357 | -"@vue/compiler-sfc@3.0.11": | |
2358 | - version "3.0.11" | |
2359 | - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.11.tgz#cd8ca2154b88967b521f5ad3b10f5f8b6b665679" | |
2360 | - integrity sha512-7fNiZuCecRleiyVGUWNa6pn8fB2fnuJU+3AGjbjl7r1P5wBivfl02H4pG+2aJP5gh2u+0wXov1W38tfWOphsXw== | |
2349 | +"@vue/compiler-dom@3.1.2": | |
2350 | + version "3.1.2" | |
2351 | + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.1.2.tgz#75a7731bcc5d9718183a3c56c18e992f7c13e7b1" | |
2352 | + integrity sha512-k2+SWcWH0jL6WQAX7Or2ONqu5MbtTgTO0dJrvebQYzgqaKMXNI90RNeWeCxS4BnNFMDONpHBeFgbwbnDWIkmRg== | |
2353 | + dependencies: | |
2354 | + "@vue/compiler-core" "3.1.2" | |
2355 | + "@vue/shared" "3.1.2" | |
2356 | + | |
2357 | +"@vue/compiler-sfc@3.1.2": | |
2358 | + version "3.1.2" | |
2359 | + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.1.2.tgz#23ff1e366d887b964899568bffcb11e3d0511fc4" | |
2360 | + integrity sha512-SeG/2+DvwejQ7oAiSx8BrDh5qOdqCYHGClPiTvVIHTfSIHiS2JjMbCANdDCjHkTOh/O7WZzo2JhdKm98bRBxTw== | |
2361 | 2361 | dependencies: |
2362 | 2362 | "@babel/parser" "^7.13.9" |
2363 | 2363 | "@babel/types" "^7.13.0" |
2364 | - "@vue/compiler-core" "3.0.11" | |
2365 | - "@vue/compiler-dom" "3.0.11" | |
2366 | - "@vue/compiler-ssr" "3.0.11" | |
2367 | - "@vue/shared" "3.0.11" | |
2364 | + "@types/estree" "^0.0.48" | |
2365 | + "@vue/compiler-core" "3.1.2" | |
2366 | + "@vue/compiler-dom" "3.1.2" | |
2367 | + "@vue/compiler-ssr" "3.1.2" | |
2368 | + "@vue/shared" "3.1.2" | |
2368 | 2369 | consolidate "^0.16.0" |
2369 | 2370 | estree-walker "^2.0.1" |
2370 | 2371 | hash-sum "^2.0.0" |
... | ... | @@ -2398,14 +2399,6 @@ |
2398 | 2399 | postcss-selector-parser "^6.0.4" |
2399 | 2400 | source-map "^0.6.1" |
2400 | 2401 | |
2401 | -"@vue/compiler-ssr@3.0.11": | |
2402 | - version "3.0.11" | |
2403 | - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.11.tgz#ac5a05fd1257412fa66079c823d8203b6a889a13" | |
2404 | - integrity sha512-66yUGI8SGOpNvOcrQybRIhl2M03PJ+OrDPm78i7tvVln86MHTKhM3ERbALK26F7tXl0RkjX4sZpucCpiKs3MnA== | |
2405 | - dependencies: | |
2406 | - "@vue/compiler-dom" "3.0.11" | |
2407 | - "@vue/shared" "3.0.11" | |
2408 | - | |
2409 | 2402 | "@vue/compiler-ssr@3.1.1": |
2410 | 2403 | version "3.1.1" |
2411 | 2404 | resolved "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.1.1.tgz#1d08b98601397258ed059b75966e0e94a385d770" |
... | ... | @@ -2414,18 +2407,19 @@ |
2414 | 2407 | "@vue/compiler-dom" "3.1.1" |
2415 | 2408 | "@vue/shared" "3.1.1" |
2416 | 2409 | |
2410 | +"@vue/compiler-ssr@3.1.2": | |
2411 | + version "3.1.2" | |
2412 | + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.1.2.tgz#e33ad0876d9b96f0950e22b0e174b94c1b049d2d" | |
2413 | + integrity sha512-BwXo9LFk5OSWdMyZQ4bX1ELHX0Z/9F+ld/OaVnpUPzAZCHslBYLvyKUVDwv2C/lpLjRffpC2DOUEdl1+RP1aGg== | |
2414 | + dependencies: | |
2415 | + "@vue/compiler-dom" "3.1.2" | |
2416 | + "@vue/shared" "3.1.2" | |
2417 | + | |
2417 | 2418 | "@vue/devtools-api@^6.0.0-beta.14", "@vue/devtools-api@^6.0.0-beta.7": |
2418 | 2419 | version "6.0.0-beta.14" |
2419 | 2420 | resolved "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.0.0-beta.14.tgz#6ed2d6f8d66a9256c9ad04bfff08309ba87b9723" |
2420 | 2421 | integrity sha512-44fPrrN1cqcs6bFkT0C+yxTM6PZXLbR+ESh1U1j8UD22yO04gXvxH62HApMjLbS3WqJO/iCNC+CYT+evPQh2EQ== |
2421 | 2422 | |
2422 | -"@vue/reactivity@3.0.11": | |
2423 | - version "3.0.11" | |
2424 | - resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.11.tgz#07b588349fd05626b17f3500cbef7d4bdb4dbd0b" | |
2425 | - integrity sha512-SKM3YKxtXHBPMf7yufXeBhCZ4XZDKP9/iXeQSC8bBO3ivBuzAi4aZi0bNoeE2IF2iGfP/AHEt1OU4ARj4ao/Xw== | |
2426 | - dependencies: | |
2427 | - "@vue/shared" "3.0.11" | |
2428 | - | |
2429 | 2423 | "@vue/reactivity@3.1.1", "@vue/reactivity@^3.0.11": |
2430 | 2424 | version "3.1.1" |
2431 | 2425 | resolved "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.1.1.tgz#9c02fd146a6c3b03e7d658b7cf76f4b69b0f98c8" |
... | ... | @@ -2433,13 +2427,12 @@ |
2433 | 2427 | dependencies: |
2434 | 2428 | "@vue/shared" "3.1.1" |
2435 | 2429 | |
2436 | -"@vue/runtime-core@3.0.11": | |
2437 | - version "3.0.11" | |
2438 | - resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.11.tgz#c52dfc6acf3215493623552c1c2919080c562e44" | |
2439 | - integrity sha512-87XPNwHfz9JkmOlayBeCCfMh9PT2NBnv795DSbi//C/RaAnc/bGZgECjmkD7oXJ526BZbgk9QZBPdFT8KMxkAg== | |
2430 | +"@vue/reactivity@3.1.2": | |
2431 | + version "3.1.2" | |
2432 | + resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.1.2.tgz#66fa530dd726d2fef285ae55d02106a727db463b" | |
2433 | + integrity sha512-glJzJoN2xE7I2lRvwKM5u1BHRPTd1yc8iaf//Lai/78/uYAvE5DXp5HzWRFOwMlbRvMGJHIQjOqoxj87cDAaag== | |
2440 | 2434 | dependencies: |
2441 | - "@vue/reactivity" "3.0.11" | |
2442 | - "@vue/shared" "3.0.11" | |
2435 | + "@vue/shared" "3.1.2" | |
2443 | 2436 | |
2444 | 2437 | "@vue/runtime-core@3.1.1": |
2445 | 2438 | version "3.1.1" |
... | ... | @@ -2449,14 +2442,13 @@ |
2449 | 2442 | "@vue/reactivity" "3.1.1" |
2450 | 2443 | "@vue/shared" "3.1.1" |
2451 | 2444 | |
2452 | -"@vue/runtime-dom@3.0.11": | |
2453 | - version "3.0.11" | |
2454 | - resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.11.tgz#7a552df21907942721feb6961c418e222a699337" | |
2455 | - integrity sha512-jm3FVQESY3y2hKZ2wlkcmFDDyqaPyU3p1IdAX92zTNeCH7I8zZ37PtlE1b9NlCtzV53WjB4TZAYh9yDCMIEumA== | |
2445 | +"@vue/runtime-core@3.1.2": | |
2446 | + version "3.1.2" | |
2447 | + resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.1.2.tgz#f4dbc503cfc9a02ab5f1ebe002c3322512064a54" | |
2448 | + integrity sha512-gsPZG4dRIkixuuKmoj4P9IHgfT0yaFLcqWOM5F/bCk0nxQn1XtxH8oUehWuET726KhbukvDoJfe9G2CKviy80w== | |
2456 | 2449 | dependencies: |
2457 | - "@vue/runtime-core" "3.0.11" | |
2458 | - "@vue/shared" "3.0.11" | |
2459 | - csstype "^2.6.8" | |
2450 | + "@vue/reactivity" "3.1.2" | |
2451 | + "@vue/shared" "3.1.2" | |
2460 | 2452 | |
2461 | 2453 | "@vue/runtime-dom@3.1.1": |
2462 | 2454 | version "3.1.1" |
... | ... | @@ -2467,16 +2459,25 @@ |
2467 | 2459 | "@vue/shared" "3.1.1" |
2468 | 2460 | csstype "^2.6.8" |
2469 | 2461 | |
2470 | -"@vue/shared@3.0.11": | |
2471 | - version "3.0.11" | |
2472 | - resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.11.tgz#20d22dd0da7d358bb21c17f9bde8628152642c77" | |
2473 | - integrity sha512-b+zB8A2so8eCE0JsxjL24J7vdGl8rzPQ09hZNhystm+KqSbKcAej1A+Hbva1rCMmTTqA+hFnUSDc5kouEo0JzA== | |
2462 | +"@vue/runtime-dom@3.1.2": | |
2463 | + version "3.1.2" | |
2464 | + resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.1.2.tgz#0fd8724f14bc7ba64b6c954d874a8d8a4fcb5fe9" | |
2465 | + integrity sha512-QvINxjLucEZFzp5f0NVu7JqWYCv5TKQfkH2FDs/N6QNE4iKcYtKrWdT0HKfABnVXG28Znqv6rIH0dH4ZAOwxpA== | |
2466 | + dependencies: | |
2467 | + "@vue/runtime-core" "3.1.2" | |
2468 | + "@vue/shared" "3.1.2" | |
2469 | + csstype "^2.6.8" | |
2474 | 2470 | |
2475 | 2471 | "@vue/shared@3.1.1", "@vue/shared@^3.0.11": |
2476 | 2472 | version "3.1.1" |
2477 | 2473 | resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.1.1.tgz#2287cfc3dc20e5b20aeb65c2c3a56533bdca801c" |
2478 | 2474 | integrity sha512-g+4pzAw7PYSjARtLBoDq6DmcblX8i9KJHSCnyM5VDDFFifUaUT9iHbFpOF/KOizQ9f7QAqU2JH3Y6aXjzUMhVA== |
2479 | 2475 | |
2476 | +"@vue/shared@3.1.2": | |
2477 | + version "3.1.2" | |
2478 | + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.1.2.tgz#1069c0bc7d6f4bd15ccf3a5f3be29450aca368f9" | |
2479 | + integrity sha512-EmH/poaDWBPJaPILXNI/1fvUbArJQmmTyVCwvvyDYDFnkPoTclAbHRAtyIvqfez7jybTDn077HTNILpxlsoWhg== | |
2480 | + | |
2480 | 2481 | "@vue/test-utils@^2.0.0-rc.9": |
2481 | 2482 | version "2.0.0-rc.9" |
2482 | 2483 | resolved "https://registry.npmjs.org/@vue/test-utils/-/test-utils-2.0.0-rc.9.tgz#b3f817d710a1d0ae2084143520c9d8d3c552bfa6" |
... | ... | @@ -2675,10 +2676,10 @@ ansi-styles@^5.0.0: |
2675 | 2676 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" |
2676 | 2677 | integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== |
2677 | 2678 | |
2678 | -ant-design-vue@2.1.6: | |
2679 | - version "2.1.6" | |
2680 | - resolved "https://registry.yarnpkg.com/ant-design-vue/-/ant-design-vue-2.1.6.tgz#c51cdc858e1b1b8b569f5435eb487f53a3f1745e" | |
2681 | - integrity sha512-qICxb6Y4f7QuSuh/jbLhZA9SkUBnP9xYfy/E6yD7+1fg04aAzmRK8oLv8ETuGTrROVdSVeic9v/NS2BXEuuARg== | |
2679 | +ant-design-vue@2.2.0-beta.6: | |
2680 | + version "2.2.0-beta.6" | |
2681 | + resolved "https://registry.yarnpkg.com/ant-design-vue/-/ant-design-vue-2.2.0-beta.6.tgz#14b20bc7723d9fc628c87870ee5ea4b78a220f8d" | |
2682 | + integrity sha512-t0hG5W62mHnFyxYf6rztQlaVZMpziyz7jTbeRibBp72h46kIrO3d+RdJhLJQs8T7gfPzj7jJmVq2KFn0s5QeVw== | |
2682 | 2683 | dependencies: |
2683 | 2684 | "@ant-design-vue/use" "^0.0.1-0" |
2684 | 2685 | "@ant-design/icons-vue" "^6.0.0" |
... | ... | @@ -2686,13 +2687,12 @@ ant-design-vue@2.1.6: |
2686 | 2687 | "@simonwep/pickr" "~1.8.0" |
2687 | 2688 | array-tree-filter "^2.1.0" |
2688 | 2689 | async-validator "^3.3.0" |
2689 | - dom-align "^1.10.4" | |
2690 | + dom-align "^1.12.1" | |
2690 | 2691 | dom-scroll-into-view "^2.0.0" |
2691 | 2692 | lodash "^4.17.21" |
2692 | 2693 | lodash-es "^4.17.15" |
2693 | 2694 | moment "^2.27.0" |
2694 | 2695 | omit.js "^2.0.0" |
2695 | - resize-observer-polyfill "^1.5.1" | |
2696 | 2696 | scroll-into-view-if-needed "^2.2.25" |
2697 | 2697 | shallow-equal "^1.0.0" |
2698 | 2698 | vue-types "^3.0.0" |
... | ... | @@ -4591,7 +4591,7 @@ doctypes@^1.1.0: |
4591 | 4591 | resolved "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" |
4592 | 4592 | integrity sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk= |
4593 | 4593 | |
4594 | -dom-align@^1.10.4: | |
4594 | +dom-align@^1.12.1: | |
4595 | 4595 | version "1.12.2" |
4596 | 4596 | resolved "https://registry.yarnpkg.com/dom-align/-/dom-align-1.12.2.tgz#0f8164ebd0c9c21b0c790310493cd855892acd4b" |
4597 | 4597 | integrity sha512-pHuazgqrsTFrGU2WLDdXxCFabkdQDx72ddkraZNih1KsMcN5qsRSTR9O4VJRlwTPCPb5COYg3LOfiMHHcPInHg== |
... | ... | @@ -12511,14 +12511,14 @@ vue-types@^3.0.0, vue-types@^3.0.2: |
12511 | 12511 | dependencies: |
12512 | 12512 | is-plain-object "3.0.1" |
12513 | 12513 | |
12514 | -vue@3.0.11: | |
12515 | - version "3.0.11" | |
12516 | - resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.11.tgz#c82f9594cbf4dcc869241d4c8dd3e08d9a8f4b5f" | |
12517 | - integrity sha512-3/eUi4InQz8MPzruHYSTQPxtM3LdZ1/S/BvaU021zBnZi0laRUyH6pfuE4wtUeLvI8wmUNwj5wrZFvbHUXL9dw== | |
12514 | +vue@3.1.2: | |
12515 | + version "3.1.2" | |
12516 | + resolved "https://registry.yarnpkg.com/vue/-/vue-3.1.2.tgz#647f8e3949a3d600771dca25d50225dc3e594c64" | |
12517 | + integrity sha512-q/rbKpb7aofax4ugqu2k/uj7BYuNPcd6Z5/qJtfkJQsE0NkwVoCyeSh7IZGH61hChwYn3CEkh4bHolvUPxlQ+w== | |
12518 | 12518 | dependencies: |
12519 | - "@vue/compiler-dom" "3.0.11" | |
12520 | - "@vue/runtime-dom" "3.0.11" | |
12521 | - "@vue/shared" "3.0.11" | |
12519 | + "@vue/compiler-dom" "3.1.2" | |
12520 | + "@vue/runtime-dom" "3.1.2" | |
12521 | + "@vue/shared" "3.1.2" | |
12522 | 12522 | |
12523 | 12523 | vue@^3.0.0: |
12524 | 12524 | version "3.1.1" | ... | ... |