Commit 566280422de0537c4e31496eaaa95a9d51fe9458

Authored by vben
1 parent 3a16f2b8

fix(code-editor): fix CodeEditor style problem, fix #655

CHANGELOG.zh_CN.md
  1 +## Wip
  2 +
  3 +### 🐛 Bug Fixes
  4 +
  5 +- 修复`CodeEditor`样式问题
  6 +
1 7 ## 2.4.0 (2021-05-25)
2 8  
3 9 ### ✨ Features
... ...
package.json
... ... @@ -37,7 +37,7 @@
37 37 "@logicflow/extension": "^0.4.8",
38 38 "@vueuse/core": "^4.11.1",
39 39 "@zxcvbn-ts/core": "^0.3.0",
40   - "ant-design-vue": "2.1.6",
  40 + "ant-design-vue": "2.1.2",
41 41 "axios": "^0.21.1",
42 42 "codemirror": "^5.61.1",
43 43 "cropperjs": "^1.5.11",
... ... @@ -53,7 +53,7 @@
53 53 "sortablejs": "^1.13.0",
54 54 "tinymce": "^5.8.1",
55 55 "vditor": "^3.8.5",
56   - "vue": "3.1.0-beta.5",
  56 + "vue": "3.0.11",
57 57 "vue-i18n": "9.1.6",
58 58 "vue-json-pretty": "^2.0.2",
59 59 "vue-router": "^4.0.8",
... ... @@ -80,7 +80,7 @@
80 80 "@vitejs/plugin-legacy": "^1.4.0",
81 81 "@vitejs/plugin-vue": "^1.2.2",
82 82 "@vitejs/plugin-vue-jsx": "^1.1.4",
83   - "@vue/compiler-sfc": "3.1.0-beta.5",
  83 + "@vue/compiler-sfc": "3.0.11",
84 84 "autoprefixer": "^10.2.6",
85 85 "commitizen": "^4.2.4",
86 86 "conventional-changelog-cli": "^2.1.1",
... ... @@ -120,14 +120,14 @@
120 120 "vite-plugin-style-import": "^0.10.1",
121 121 "vite-plugin-svg-icons": "^0.6.1",
122 122 "vite-plugin-theme": "^0.8.0",
123   - "vite-plugin-windicss": "0.16.0",
  123 + "vite-plugin-windicss": "^0.16.5",
124 124 "vue-eslint-parser": "^7.6.0",
125 125 "vue-tsc": "^0.1.6"
126 126 },
127 127 "resolutions": {
128 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.50.1"
  130 + "rollup": "^2.50.2"
131 131 },
132 132 "repository": {
133 133 "type": "git",
... ...
src/components/CodeEditor/src/codemirror/CodeMirror.vue
1 1 <template>
2   - <div class="relative h-100 !h-full w-full overflow-hidden" ref="el"> </div>
  2 + <div class="relative !h-full w-full overflow-hidden" ref="el"> </div>
3 3 </template>
4 4  
5 5 <script lang="ts">
... ...
src/components/CodeEditor/src/codemirror/codemirror.css
... ... @@ -338,6 +338,7 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {
338 338  
339 339 .CodeMirror-sizer {
340 340 position: relative;
  341 + margin-bottom: 20px !important;
341 342 border-right: 30px solid transparent;
342 343 }
343 344  
... ...
src/components/Page/src/PageWrapper.vue
... ... @@ -17,9 +17,11 @@
17 17 <slot :name="item" v-bind="data"></slot>
18 18 </template>
19 19 </PageHeader>
  20 +
20 21 <div class="overflow-hidden" :class="getContentClass" :style="getContentStyle">
21 22 <slot></slot>
22 23 </div>
  24 +
23 25 <PageFooter v-if="getShowFooter" ref="footerRef">
24 26 <template #left>
25 27 <slot name="leftFooter"></slot>
... ... @@ -81,21 +83,19 @@
81 83 return Object.keys(omit(slots, 'default', 'leftFooter', 'rightFooter', 'headerContent'));
82 84 });
83 85  
84   - const getContentStyle = computed(
85   - (): CSSProperties => {
86   - const { contentFullHeight, contentStyle, fixedHeight } = props;
87   - if (!contentFullHeight) {
88   - return { ...contentStyle };
89   - }
90   - const height = `${unref(pageHeight)}px`;
91   - return {
92   - ...contentStyle,
93   - minHeight: height,
94   - ...(fixedHeight ? { height } : {}),
95   - paddingBottom: `${unref(footerHeight)}px`,
96   - };
  86 + const getContentStyle = computed((): CSSProperties => {
  87 + const { contentFullHeight, contentStyle, fixedHeight } = props;
  88 + if (!contentFullHeight) {
  89 + return { ...contentStyle };
97 90 }
98   - );
  91 + const height = `${unref(pageHeight)}px`;
  92 + return {
  93 + ...contentStyle,
  94 + minHeight: height,
  95 + ...(fixedHeight ? { height } : {}),
  96 + paddingBottom: `${unref(footerHeight)}px`,
  97 + };
  98 + });
99 99  
100 100 const getContentClass = computed(() => {
101 101 const { contentBackground, contentClass } = props;
... ... @@ -145,14 +145,15 @@
145 145 }
146 146 // fix:subtract content's marginTop and marginBottom value
147 147 let subtractHeight = 0;
148   - let marginBottom = '0px';
149   - let marginTop = '0px';
  148 + const ZERO_PX = '0px';
  149 + let marginBottom = ZERO_PX;
  150 + let marginTop = ZERO_PX;
150 151 const classElments = document.querySelectorAll(`.${prefixVar}-page-wrapper-content`);
151 152 if (classElments && classElments.length > 0) {
152 153 const contentEl = classElments[0];
153 154 const cssStyle = getComputedStyle(contentEl);
154   - marginBottom = cssStyle?.marginBottom;
155   - marginTop = cssStyle?.marginTop;
  155 + marginBottom = cssStyle?.marginBottom ?? ZERO_PX;
  156 + marginTop = cssStyle?.marginTop ?? ZERO_PX;
156 157 }
157 158 if (marginBottom) {
158 159 const contentMarginBottom = Number(marginBottom.replace(/[^\d]/g, ''));
... ...
src/main.ts
... ... @@ -15,8 +15,8 @@ import { registerGlobComp } from &#39;/@/components/registerGlobComp&#39;;
15 15 // Register icon Sprite
16 16 import 'virtual:svg-icons-register';
17 17  
18   -// Do not introduce` on-demand in local development?
19   -// In the local development for on-demand introduction, the number of browser requests will increase by about 20%.
  18 +// Do not introduce on-demand in local development?
  19 +// In the local development for introduce on-demand, the number of browser requests will increase by about 20%.
20 20 // Which may slow down the browser refresh.
21 21 // Therefore, all are introduced in local development, and only introduced on demand in the production environment
22 22 if (import.meta.env.DEV) {
... ...
yarn.lock
... ... @@ -1951,17 +1951,6 @@
1951 1951 estree-walker "^2.0.1"
1952 1952 source-map "^0.6.1"
1953 1953  
1954   -"@vue/compiler-core@3.1.0-beta.5":
1955   - version "3.1.0-beta.5"
1956   - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.1.0-beta.5.tgz#e99427a810d1f1603d58ba5e213f83e2c54688c6"
1957   - integrity sha512-pL6XvPUvZLsGd6wHxZ+KXBEc8oOiKZKCuQ+DGBU2HWSvSP0YrIVA2y1fc/8NP7dFvBq3Eqr79oIPDIQHbmVDIw==
1958   - dependencies:
1959   - "@babel/parser" "^7.12.0"
1960   - "@babel/types" "^7.12.0"
1961   - "@vue/shared" "3.1.0-beta.5"
1962   - estree-walker "^2.0.1"
1963   - source-map "^0.6.1"
1964   -
1965 1954 "@vue/compiler-dom@3.0.11", "@vue/compiler-dom@^3.0.11":
1966 1955 version "3.0.11"
1967 1956 resolved "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.0.11.tgz#b15fc1c909371fd671746020ba55b5dab4a730ee"
... ... @@ -1970,39 +1959,9 @@
1970 1959 "@vue/compiler-core" "3.0.11"
1971 1960 "@vue/shared" "3.0.11"
1972 1961  
1973   -"@vue/compiler-dom@3.1.0-beta.5":
1974   - version "3.1.0-beta.5"
1975   - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.1.0-beta.5.tgz#c0cccdda578845351c9876f28cc4d68e2e021a61"
1976   - integrity sha512-DZTx4UViFxALOEsCNNb44hClDJEV02JW46G3cdCJwakcLE0o6vppgrazF+7zIOV5qjrN00sAQeCf9EbaLrgY2Q==
1977   - dependencies:
1978   - "@vue/compiler-core" "3.1.0-beta.5"
1979   - "@vue/shared" "3.1.0-beta.5"
1980   -
1981   -"@vue/compiler-sfc@3.1.0-beta.5":
1982   - version "3.1.0-beta.5"
1983   - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.1.0-beta.5.tgz#2c3c8aa4148ca17d2b46eb6fa36363b84b99ce46"
1984   - integrity sha512-mjozHyFFbMOPRFYD1YqpHGvcncnGkPidud9Q+93E0db4crfXJ8dK7jQhc8HYXcoXaQ7WCz9oeF7AaRrAv9CmBw==
1985   - dependencies:
1986   - "@babel/parser" "^7.13.9"
1987   - "@babel/types" "^7.13.0"
1988   - "@vue/compiler-core" "3.1.0-beta.5"
1989   - "@vue/compiler-dom" "3.1.0-beta.5"
1990   - "@vue/compiler-ssr" "3.1.0-beta.5"
1991   - "@vue/shared" "3.1.0-beta.5"
1992   - consolidate "^0.16.0"
1993   - estree-walker "^2.0.1"
1994   - hash-sum "^2.0.0"
1995   - lru-cache "^5.1.1"
1996   - magic-string "^0.25.7"
1997   - merge-source-map "^1.1.0"
1998   - postcss "^8.1.10"
1999   - postcss-modules "^4.0.0"
2000   - postcss-selector-parser "^6.0.4"
2001   - source-map "^0.6.1"
2002   -
2003   -"@vue/compiler-sfc@^3.0.11":
  1962 +"@vue/compiler-sfc@3.0.11", "@vue/compiler-sfc@^3.0.11":
2004 1963 version "3.0.11"
2005   - resolved "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.0.11.tgz#cd8ca2154b88967b521f5ad3b10f5f8b6b665679"
  1964 + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.11.tgz#cd8ca2154b88967b521f5ad3b10f5f8b6b665679"
2006 1965 integrity sha512-7fNiZuCecRleiyVGUWNa6pn8fB2fnuJU+3AGjbjl7r1P5wBivfl02H4pG+2aJP5gh2u+0wXov1W38tfWOphsXw==
2007 1966 dependencies:
2008 1967 "@babel/parser" "^7.13.9"
... ... @@ -2030,14 +1989,6 @@
2030 1989 "@vue/compiler-dom" "3.0.11"
2031 1990 "@vue/shared" "3.0.11"
2032 1991  
2033   -"@vue/compiler-ssr@3.1.0-beta.5":
2034   - version "3.1.0-beta.5"
2035   - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.1.0-beta.5.tgz#2ec33b389c86329c5ebeb873e4228c28c26a1bf5"
2036   - integrity sha512-MLuBIj1Sd8yfL44HK5Cm36PFFiQIOHj5I32e/DftbKLaxisrHrUulBniMeQa3aQufIqUUXBfFNC09ejIiojEfg==
2037   - dependencies:
2038   - "@vue/compiler-dom" "3.1.0-beta.5"
2039   - "@vue/shared" "3.1.0-beta.5"
2040   -
2041 1992 "@vue/devtools-api@^6.0.0-beta.10":
2042 1993 version "6.0.0-beta.10"
2043 1994 resolved "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.0.0-beta.10.tgz#f39da7618cee292e39c7274227c34163e30eb3ca"
... ... @@ -2055,13 +2006,6 @@
2055 2006 dependencies:
2056 2007 "@vue/shared" "3.0.11"
2057 2008  
2058   -"@vue/reactivity@3.1.0-beta.5":
2059   - version "3.1.0-beta.5"
2060   - resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.1.0-beta.5.tgz#c5b279a3d95ab35fa92489f2abc94f613bc6734c"
2061   - integrity sha512-lf+DVxUWZZMgOgt8QN4N91JmpxjkuDu/A3pk3jwwrb6yB4Q759IfmbD2PTKcTqgmQWaSw5CJPjRjyTe1wkWAeg==
2062   - dependencies:
2063   - "@vue/shared" "3.1.0-beta.5"
2064   -
2065 2009 "@vue/runtime-core@3.0.11":
2066 2010 version "3.0.11"
2067 2011 resolved "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.0.11.tgz#c52dfc6acf3215493623552c1c2919080c562e44"
... ... @@ -2070,14 +2014,6 @@
2070 2014 "@vue/reactivity" "3.0.11"
2071 2015 "@vue/shared" "3.0.11"
2072 2016  
2073   -"@vue/runtime-core@3.1.0-beta.5":
2074   - version "3.1.0-beta.5"
2075   - resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.1.0-beta.5.tgz#9da74fb070e7152a4486fb7e477ba9fdfbc8f8c6"
2076   - integrity sha512-YNKmKr0xI5KMplju7XfTPRsK1ePewaiEyKvvsLROQ3609HGkJWeKZlWAPdYb5j2i1ub8v4hM4iZXxQtZmrQGhg==
2077   - dependencies:
2078   - "@vue/reactivity" "3.1.0-beta.5"
2079   - "@vue/shared" "3.1.0-beta.5"
2080   -
2081 2017 "@vue/runtime-dom@3.0.11":
2082 2018 version "3.0.11"
2083 2019 resolved "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.0.11.tgz#7a552df21907942721feb6961c418e222a699337"
... ... @@ -2087,25 +2023,11 @@
2087 2023 "@vue/shared" "3.0.11"
2088 2024 csstype "^2.6.8"
2089 2025  
2090   -"@vue/runtime-dom@3.1.0-beta.5":
2091   - version "3.1.0-beta.5"
2092   - resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.1.0-beta.5.tgz#e5ebf4f13103198b0bb43b0d2eba699a5a022d1f"
2093   - integrity sha512-eLML5RNn9q/QJo802GRBvNC9W1BABJ8xyvexrruZCZAlKocTq9J0j2vS2IwAl/WbG1X8cY6yPgdQEQ/8eUy0Og==
2094   - dependencies:
2095   - "@vue/runtime-core" "3.1.0-beta.5"
2096   - "@vue/shared" "3.1.0-beta.5"
2097   - csstype "^2.6.8"
2098   -
2099 2026 "@vue/shared@3.0.11", "@vue/shared@^3.0.11":
2100 2027 version "3.0.11"
2101 2028 resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.11.tgz#20d22dd0da7d358bb21c17f9bde8628152642c77"
2102 2029 integrity sha512-b+zB8A2so8eCE0JsxjL24J7vdGl8rzPQ09hZNhystm+KqSbKcAej1A+Hbva1rCMmTTqA+hFnUSDc5kouEo0JzA==
2103 2030  
2104   -"@vue/shared@3.1.0-beta.5":
2105   - version "3.1.0-beta.5"
2106   - resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.1.0-beta.5.tgz#ef971d6f1c64f89c5918529dcbee67de9de15cfa"
2107   - integrity sha512-jtQGnIERLNZWbj4Uy6uddALlzemqH5YpCQtwIT1e0DbDpEQ+OUMP6j5TCuFWARblv63lT9t/e+nOZcC1iTr6zg==
2108   -
2109 2031 "@vueuse/core@^4.11.1":
2110 2032 version "4.11.1"
2111 2033 resolved "https://registry.npmjs.com/@vueuse/core/-/core-4.11.1.tgz#1ab79284dffe8934420a1a40491333cd0591ecd2"
... ... @@ -2121,10 +2043,10 @@
2121 2043 dependencies:
2122 2044 vue-demi "*"
2123 2045  
2124   -"@windicss/plugin-utils@0.16.0":
2125   - version "0.16.0"
2126   - resolved "https://registry.yarnpkg.com/@windicss/plugin-utils/-/plugin-utils-0.16.0.tgz#660586b95ed3394b07f9970b2be77f681ea1ecd4"
2127   - integrity sha512-Gu6iHqFnqfxE0J8Oa74+2W5L2052ptqEHBtPaOuXOFgIMTJAT2KoXb6v+/Z0ldHsxVC1q+MSsom877SJ0cL2iA==
  2046 +"@windicss/plugin-utils@0.16.5":
  2047 + version "0.16.5"
  2048 + resolved "https://registry.yarnpkg.com/@windicss/plugin-utils/-/plugin-utils-0.16.5.tgz#00e11dd5b5a51c96e494a8fe3aa705e5fb2eb3a0"
  2049 + integrity sha512-APDpVtol2RJLiHaGdn+VaBksaFWFk27LWjc51X1e+mkiPbHcepV+aBXLylNoTrIKzMjtVpsrUHRC+afGMBVgpw==
2128 2050 dependencies:
2129 2051 "@antfu/utils" "^0.1.6"
2130 2052 debug "^4.3.2"
... ... @@ -2132,7 +2054,7 @@
2132 2054 jiti "^1.9.2"
2133 2055 magic-string "^0.25.7"
2134 2056 micromatch "^4.0.4"
2135   - windicss "^3.0.9"
  2057 + windicss "^3.0.12"
2136 2058  
2137 2059 "@zxcvbn-ts/core@^0.3.0":
2138 2060 version "0.3.0"
... ... @@ -2261,10 +2183,10 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
2261 2183 dependencies:
2262 2184 color-convert "^2.0.1"
2263 2185  
2264   -ant-design-vue@2.1.6:
2265   - version "2.1.6"
2266   - resolved "https://registry.yarnpkg.com/ant-design-vue/-/ant-design-vue-2.1.6.tgz#c51cdc858e1b1b8b569f5435eb487f53a3f1745e"
2267   - integrity sha512-qICxb6Y4f7QuSuh/jbLhZA9SkUBnP9xYfy/E6yD7+1fg04aAzmRK8oLv8ETuGTrROVdSVeic9v/NS2BXEuuARg==
  2186 +ant-design-vue@2.1.2:
  2187 + version "2.1.2"
  2188 + resolved "https://registry.yarnpkg.com/ant-design-vue/-/ant-design-vue-2.1.2.tgz#2065d7e63199c0c584919458af57b6a0b597f677"
  2189 + integrity sha512-gDG0wauGVt4LE63behrJaIcq4BB+dgs+dpj9jz17IgKr2MPYSEeKetU/x9Kk8d58cGonz4Ulncg7fBZJ7EljsQ==
2268 2190 dependencies:
2269 2191 "@ant-design-vue/use" "^0.0.1-0"
2270 2192 "@ant-design/icons-vue" "^6.0.0"
... ... @@ -2274,7 +2196,7 @@ ant-design-vue@2.1.6:
2274 2196 async-validator "^3.3.0"
2275 2197 dom-align "^1.10.4"
2276 2198 dom-scroll-into-view "^2.0.0"
2277   - lodash "^4.17.21"
  2199 + is-mobile "^2.2.1"
2278 2200 lodash-es "^4.17.15"
2279 2201 moment "^2.27.0"
2280 2202 omit.js "^2.0.0"
... ... @@ -6131,6 +6053,11 @@ is-jpg@^2.0.0:
6131 6053 resolved "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz#2e1997fa6e9166eaac0242daae443403e4ef1d97"
6132 6054 integrity sha1-LhmX+m6RZuqsAkLarkQ0A+TvHZc=
6133 6055  
  6056 +is-mobile@^2.2.1:
  6057 + version "2.2.2"
  6058 + resolved "https://registry.yarnpkg.com/is-mobile/-/is-mobile-2.2.2.tgz#f6c9c5d50ee01254ce05e739bdd835f1ed4e9954"
  6059 + integrity sha512-wW/SXnYJkTjs++tVK5b6kVITZpAZPtUrt9SF80vvxGiF/Oywal+COk1jlRkiVq15RFNEQKQY31TkV24/1T5cVg==
  6060 +
6134 6061 is-module@^1.0.0:
6135 6062 version "1.0.0"
6136 6063 resolved "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
... ... @@ -8918,10 +8845,10 @@ rollup-plugin-visualizer@5.5.0:
8918 8845 source-map "^0.7.3"
8919 8846 yargs "^16.2.0"
8920 8847  
8921   -rollup@^2.38.5, rollup@^2.43.1, rollup@^2.45.2, rollup@^2.50.1:
8922   - version "2.50.1"
8923   - resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.50.1.tgz#5d52d5c65ade19164d56efec98f16a461c6df38e"
8924   - integrity sha512-3MQhSdGpms4xjYrtR3WNHMT+VrWWM4oqUxUC770MmLo1FWFR2pr/OL81HSPC/ifmiu0uMFk0qPGLmjkSMRIESw==
  8848 +rollup@^2.38.5, rollup@^2.43.1, rollup@^2.45.2, rollup@^2.50.2:
  8849 + version "2.50.2"
  8850 + resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.50.2.tgz#640c500c68c698f62efb01857e0ff06fcd18181f"
  8851 + integrity sha512-Ra5JkxSiZPZZFnvE68KWtlrLnZGg5LNaV1n1esq4ch69P7ReeoRVlrTuL/k+L/GJfcowA5An0BEhEq2Hfzwl6w==
8925 8852 optionalDependencies:
8926 8853 fsevents "~2.3.1"
8927 8854  
... ... @@ -10694,15 +10621,15 @@ vite-plugin-theme@^0.8.0:
10694 10621 esbuild-plugin-alias "^0.1.2"
10695 10622 tinycolor2 "^1.4.2"
10696 10623  
10697   -vite-plugin-windicss@0.16.0:
10698   - version "0.16.0"
10699   - resolved "https://registry.yarnpkg.com/vite-plugin-windicss/-/vite-plugin-windicss-0.16.0.tgz#d3ef9da930cc33aec162b9b760f4d42835eb353c"
10700   - integrity sha512-XaYnPNKsq2yZ5Ph39ZmPvtsTheyVsGSXibTOq/kWCKcXyLxIinTL6xQvLsagjF8QzHpHPF4NbsFvvGtO81gxgA==
  10624 +vite-plugin-windicss@^0.16.5:
  10625 + version "0.16.5"
  10626 + resolved "https://registry.yarnpkg.com/vite-plugin-windicss/-/vite-plugin-windicss-0.16.5.tgz#cc94f3a3f3b9a967587db60bc742f6a79988898e"
  10627 + integrity sha512-OevEU9W1mEemyY2kLgOu04MEBr0FZKiNCWe6FZwal5SqteZzr+5K99crQuRRxnB+hhtZ+d+QydKyUnqjuKx8Fw==
10701 10628 dependencies:
10702   - "@windicss/plugin-utils" "0.16.0"
  10629 + "@windicss/plugin-utils" "0.16.5"
10703 10630 chalk "^4.1.1"
10704 10631 debug "^4.3.2"
10705   - windicss "^3.0.9"
  10632 + windicss "^3.0.12"
10706 10633  
10707 10634 vite@2.3.3:
10708 10635 version "2.3.3"
... ... @@ -10920,16 +10847,7 @@ vue-types@^3.0.0, vue-types@^3.0.2:
10920 10847 dependencies:
10921 10848 is-plain-object "3.0.1"
10922 10849  
10923   -vue@3.1.0-beta.5:
10924   - version "3.1.0-beta.5"
10925   - resolved "https://registry.yarnpkg.com/vue/-/vue-3.1.0-beta.5.tgz#6fe228f0b4e20203b4755cb18a958af79a8ac63f"
10926   - integrity sha512-g2tHxOLkXq6OUk5hCEJDgwvmeG00v1301SBsyn9ATCyhvHm8NBl4IOWLoUAmucHXexTVwFokrIXZVDTZlLou0g==
10927   - dependencies:
10928   - "@vue/compiler-dom" "3.1.0-beta.5"
10929   - "@vue/runtime-dom" "3.1.0-beta.5"
10930   - "@vue/shared" "3.1.0-beta.5"
10931   -
10932   -vue@^3.0.0:
  10850 +vue@3.0.11, vue@^3.0.0:
10933 10851 version "3.0.11"
10934 10852 resolved "https://registry.npmjs.org/vue/-/vue-3.0.11.tgz#c82f9594cbf4dcc869241d4c8dd3e08d9a8f4b5f"
10935 10853 integrity sha512-3/eUi4InQz8MPzruHYSTQPxtM3LdZ1/S/BvaU021zBnZi0laRUyH6pfuE4wtUeLvI8wmUNwj5wrZFvbHUXL9dw==
... ... @@ -11003,7 +10921,7 @@ widest-line@^2.0.0:
11003 10921 dependencies:
11004 10922 string-width "^2.1.1"
11005 10923  
11006   -windicss@^3.0.9:
  10924 +windicss@^3.0.12:
11007 10925 version "3.0.12"
11008 10926 resolved "https://registry.yarnpkg.com/windicss/-/windicss-3.0.12.tgz#4354aaa48faaac6fd02f3119a62587da2c46b018"
11009 10927 integrity sha512-pDxtFLN0xmL7bnGtnEfu9z7B5279UM2EP8wWlPH+FYb5gjHyONxRtyWtR5QIn1FRx6h1UXpm+I19GgTx5Y4TyA==
... ...