提交 aaae6683 作者: vben

perf: update style

上级 562e2af9
## Wip
### 🐛 Bug Fixes
- 修复菜单在 hmr 时数据被置空
## 2.0.0-rc.18 (2021-02-05) ## 2.0.0-rc.18 (2021-02-05)
### ✨ Features ### ✨ Features
......
...@@ -96,11 +96,11 @@ ...@@ -96,11 +96,11 @@
"vite": "2.0.0-beta.64", "vite": "2.0.0-beta.64",
"vite-plugin-html": "^2.0.0", "vite-plugin-html": "^2.0.0",
"vite-plugin-imagemin": "^0.2.2", "vite-plugin-imagemin": "^0.2.2",
"vite-plugin-mock": "^2.0.1", "vite-plugin-mock": "2.0.5",
"vite-plugin-purge-icons": "^0.6.0", "vite-plugin-purge-icons": "^0.6.0",
"vite-plugin-pwa": "^0.4.2", "vite-plugin-pwa": "^0.4.3",
"vite-plugin-style-import": "^0.5.5", "vite-plugin-style-import": "^0.6.6",
"vite-plugin-theme": "0.3.3", "vite-plugin-theme": "0.3.8",
"vue-eslint-parser": "^7.4.1", "vue-eslint-parser": "^7.4.1",
"yargs": "^16.2.0" "yargs": "^16.2.0"
}, },
......
...@@ -321,7 +321,7 @@ export default defineComponent({ ...@@ -321,7 +321,7 @@ export default defineComponent({
return ( return (
isIfShow && ( isIfShow && (
<Col {...realColProps} class={{ hidden: !isShow }}> <Col {...realColProps} v-show={isShow}>
{getContent()} {getContent()}
</Col> </Col>
) )
......
...@@ -122,6 +122,9 @@ ...@@ -122,6 +122,9 @@
watch( watch(
() => props.items, () => props.items,
() => { () => {
if (import.meta.hot && props.items.length === 0) {
return;
}
handleMenuChange(); handleMenuChange();
} }
); );
......
@import './helper/distance.less'; @import './helper/distance.less';
.distance(); .distance();
.hidden {
display: none !important;
}
.flex { .flex {
display: flex; display: flex;
} }
......
...@@ -13,6 +13,11 @@ ...@@ -13,6 +13,11 @@
box-sizing: border-box; box-sizing: border-box;
} }
:root {
-moz-tab-size: 4;
tab-size: 4;
}
input:-webkit-autofill { input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px white inset !important; -webkit-box-shadow: 0 0 0 1000px white inset !important;
} }
...@@ -33,6 +38,8 @@ html, ...@@ -33,6 +38,8 @@ html,
html { html {
overflow: hidden; overflow: hidden;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
} }
html, html,
...@@ -53,34 +60,9 @@ body { ...@@ -53,34 +60,9 @@ body {
} }
body { body {
font-family: 'BlinkMacSystemFont,segoe ui,Microsoft YaHei,Arial,sans-serif,Helvetica Neue,Helvetica,Pingfang SC,Hiragino Sans GB,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji'; font-family: system-ui, -apple-system, 'Segoe UI', Microsoft YaHei, Arial, sans-serif,
font-style: normal; Helvetica Neue, Helvetica, Pingfang SC, Hiragino Sans GB, Roboto, helvetica neue, noto sans,
font-weight: normal; apple color emoji, segoe ui emoji, segoe ui symbol, noto color emoji;
line-height: 1.428571429; // 20/14
letter-spacing: normal;
word-spacing: normal;
text-align: left; // Fallback for where `start` is not supported
text-align: start;
text-decoration: none;
text-size-adjust: 100%;
text-shadow: none;
text-transform: none;
word-break: normal;
word-wrap: normal;
white-space: normal;
line-break: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin-top: 0;
margin-bottom: 0.5em;
font-weight: 500;
color: @heading-color;
} }
ul, ul,
...@@ -92,68 +74,121 @@ li { ...@@ -92,68 +74,121 @@ li {
list-style-type: none; list-style-type: none;
} }
img { a:focus,
vertical-align: top; a:active {
border: 0; outline: none;
}
hr {
height: 0;
color: inherit;
}
abbr[title] {
text-decoration: underline dotted;
}
b,
strong {
font-weight: bolder;
}
code,
kbd,
samp,
pre {
font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
font-size: 1em;
}
small {
font-size: 80%;
}
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
} }
table { table {
border-collapse: collapse; text-indent: 0;
border-spacing: 0; border-color: inherit;
} }
a:focus, button,
a:active { input,
outline: none; optgroup,
select,
textarea {
margin: 0;
font-family: inherit;
font-size: 100%;
line-height: 1.15;
} }
i, button,
em { select {
font-style: normal; text-transform: none;
} }
button, button,
div:focus { [type='button'],
outline: none !important; [type='reset'],
[type='submit'] {
-webkit-appearance: button;
} }
a { ::-moz-focus-inner {
color: @link-color; padding: 0;
text-decoration: none; border-style: none;
cursor: pointer; }
background-color: transparent; // remove the gray background on active links in IE 10.
outline: none;
transition: color 0.3s;
-webkit-text-decoration-skip: objects; // remove gaps in links underline in iOS 8+ and Safari 8+.
&:hover { :-moz-focusring {
color: @link-hover-color; outline: 1px dotted ButtonText;
} }
&:active { :-moz-ui-invalid {
color: @link-active-color; box-shadow: none;
} }
&:active, legend {
&:hover { padding: 0;
text-decoration: none; }
outline: 0;
}
&[disabled] { progress {
color: @disabled-color; vertical-align: baseline;
pointer-events: none; }
cursor: not-allowed;
} ::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
height: auto;
}
[type='search'] {
outline-offset: -2px;
-webkit-appearance: textfield;
}
::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
} }
img, summary {
svg, display: list-item;
video,
canvas,
audio,
iframe,
embed,
object {
vertical-align: baseline !important;
} }
...@@ -2,9 +2,10 @@ ...@@ -2,9 +2,10 @@
<div <div
v-if="getMenuFixed && !getIsMobile" v-if="getMenuFixed && !getIsMobile"
:style="getHiddenDomStyle" :style="getHiddenDomStyle"
:class="{ hidden: !showClassSideBarRef }" v-show="showClassSideBarRef"
></div> ></div>
<Sider <Sider
v-show="showClassSideBarRef"
ref="sideRef" ref="sideRef"
breakpoint="lg" breakpoint="lg"
collapsible collapsible
...@@ -84,7 +85,6 @@ ...@@ -84,7 +85,6 @@
prefixCls, prefixCls,
{ {
[`${prefixCls}--fixed`]: unref(getMenuFixed), [`${prefixCls}--fixed`]: unref(getMenuFixed),
hidden: !unref(showClassSideBarRef),
[`${prefixCls}--mix`]: unref(getIsMixMode) && !unref(getIsMobile), [`${prefixCls}--mix`]: unref(getIsMixMode) && !unref(getIsMobile),
}, },
]; ];
......
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
"allowJs": true, "allowJs": true,
"sourceMap": true, "sourceMap": true,
"esModuleInterop": true, "esModuleInterop": true,
"resolveJsonModule": true,
"noUnusedLocals": true, "noUnusedLocals": true,
"noUnusedParameters": true, "noUnusedParameters": true,
"experimentalDecorators": true, "experimentalDecorators": true,
......
...@@ -6002,6 +6002,11 @@ lodash.map@^4.5.1: ...@@ -6002,6 +6002,11 @@ lodash.map@^4.5.1:
resolved "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" resolved "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3"
integrity sha1-dx7Hg540c9nEzeKLGTlMNWL09tM= integrity sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=
lodash.sortby@^4.7.0:
version "4.7.0"
resolved "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
lodash.template@^4.0.2: lodash.template@^4.0.2:
version "4.5.0" version "4.5.0"
resolved "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" resolved "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab"
...@@ -8141,6 +8146,13 @@ source-map@^0.7.3, source-map@~0.7.2: ...@@ -8141,6 +8146,13 @@ source-map@^0.7.3, source-map@~0.7.2:
resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
source-map@^0.8.0-beta.0:
version "0.8.0-beta.0"
resolved "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz#d4c1bb42c3f7ee925f005927ba10709e0d1d1f11"
integrity sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==
dependencies:
whatwg-url "^7.0.0"
sourcemap-codec@^1.4.4: sourcemap-codec@^1.4.4:
version "1.4.8" version "1.4.8"
resolved "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" resolved "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4"
...@@ -8809,6 +8821,13 @@ toidentifier@1.0.0: ...@@ -8809,6 +8821,13 @@ toidentifier@1.0.0:
resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
tr46@^1.0.1:
version "1.0.1"
resolved "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=
dependencies:
punycode "^2.1.0"
trim-newlines@^1.0.0: trim-newlines@^1.0.0:
version "1.0.0" version "1.0.0"
resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
...@@ -9195,10 +9214,10 @@ vite-plugin-imagemin@^0.2.2: ...@@ -9195,10 +9214,10 @@ vite-plugin-imagemin@^0.2.2:
imagemin-svgo "^8.0.0" imagemin-svgo "^8.0.0"
imagemin-webp "^6.0.0" imagemin-webp "^6.0.0"
vite-plugin-mock@^2.0.1: vite-plugin-mock@2.0.5:
version "2.0.1" version "2.0.5"
resolved "https://registry.npmjs.org/vite-plugin-mock/-/vite-plugin-mock-2.0.1.tgz#46b69ebeea3c13072a764b11974a4fb65bd06925" resolved "https://registry.npmjs.org/vite-plugin-mock/-/vite-plugin-mock-2.0.5.tgz#163953ac4b8e1567898a3ea21a503371bd64c82b"
integrity sha512-1avHTs2B21uiMxa6zWI99G5X2MtUJ2vnGuBN2TS8jGGYCgUXZ/arMTcSeAo4RPpr6CPZmXYr/Q8ej5tJmGvhhA== integrity sha512-gDPgKe/Ab/cy5D879xcwMzPK7q8T07qH408pHJ6uJDFiyndOa9RsZo0gC/AbS/+q13kUPGb0eSFHVnvmPog8MQ==
dependencies: dependencies:
"@rollup/plugin-node-resolve" "^11.1.1" "@rollup/plugin-node-resolve" "^11.1.1"
"@types/mockjs" "^1.0.3" "@types/mockjs" "^1.0.3"
...@@ -9222,30 +9241,30 @@ vite-plugin-purge-icons@^0.6.0: ...@@ -9222,30 +9241,30 @@ vite-plugin-purge-icons@^0.6.0:
"@purge-icons/generated" "^0.6.0" "@purge-icons/generated" "^0.6.0"
rollup-plugin-purge-icons "^0.6.0" rollup-plugin-purge-icons "^0.6.0"
vite-plugin-pwa@^0.4.2: vite-plugin-pwa@^0.4.3:
version "0.4.2" version "0.4.3"
resolved "https://registry.npmjs.org/vite-plugin-pwa/-/vite-plugin-pwa-0.4.2.tgz#b2e988147beb7bd2f42e88a98cb280a7d3739918" resolved "https://registry.npmjs.org/vite-plugin-pwa/-/vite-plugin-pwa-0.4.3.tgz#58262cb1eb889dc4fd41ab070ca77668d7a3c0a1"
integrity sha512-zlKK45jBa7hxrVQlEIbdiIU3Eds2NEd6XT8noYPZha8GFRdB6Y6Izpnp7JYRHc+H6I4JHI3bmlwifOtjSFRrbA== integrity sha512-VwC/bgAAziH1WiQG0QdjuNIxwlvA/rTFCMQuWQ5VCUHXdxoYb8n0pA/u1/dDP7D7yR1myxUvYZe97wAbJxfscw==
dependencies: dependencies:
debug "^4.3.2" debug "^4.3.2"
fast-glob "^3.2.5" fast-glob "^3.2.5"
pretty-bytes "^5.5.0" pretty-bytes "^5.5.0"
workbox-build "^6.0.2" workbox-build "^6.1.0"
vite-plugin-style-import@^0.5.5: vite-plugin-style-import@^0.6.6:
version "0.5.5" version "0.6.6"
resolved "https://registry.npmjs.org/vite-plugin-style-import/-/vite-plugin-style-import-0.5.5.tgz#a73847d4fb9079f404d39c5a7d463f2d8943f5a6" resolved "https://registry.npmjs.org/vite-plugin-style-import/-/vite-plugin-style-import-0.6.6.tgz#ce5a8e10fcb52b6c0bdac6b2c14220d42c0e029e"
integrity sha512-C8ISIpUhwlMt8aYj76+QhnIQnJc5SSnYVvpyFKJxUQUDM8jZIeawlsrPdydk4Ff/sBLg8Ahq1f4TEA2AItJmbA== integrity sha512-Kc8KKRAcKtxst+nxB0aPpo+SKzLozggS2RXnSqqoAXTogU5bJut9pgvSkP+qcalToDRBWe+DUt/YC3Oya/x06Q==
dependencies: dependencies:
"@rollup/pluginutils" "^4.1.0" "@rollup/pluginutils" "^4.1.0"
change-case "^4.1.2" change-case "^4.1.2"
es-module-lexer "^0.3.26" es-module-lexer "^0.3.26"
magic-string "^0.25.7" magic-string "^0.25.7"
vite-plugin-theme@0.3.3: vite-plugin-theme@0.3.8:
version "0.3.3" version "0.3.8"
resolved "https://registry.npmjs.org/vite-plugin-theme/-/vite-plugin-theme-0.3.3.tgz#2f0bd6ae6cc7d018c70e02a6ac277f9d15b64d4a" resolved "https://registry.npmjs.org/vite-plugin-theme/-/vite-plugin-theme-0.3.8.tgz#621eebd977cce8bd60fc9cdf516f23bf33a64328"
integrity sha512-tsA4fdnRw+6gBQ3Y17JvGRh/LFOKm9V7cYiV8+E5s06+U1g6XCS9GznEF3Hij+u2Dq3v9HudhwqwXKRO9ep4dw== integrity sha512-skxGc8zawhgTNt3QeivDOfRtNXg74dP6UnBexcefhOPskQN0s3Y1EjHEsD6/AAeLL/rd5QPnTm4OdrPJUfVD7g==
dependencies: dependencies:
"@types/tinycolor2" "^1.4.2" "@types/tinycolor2" "^1.4.2"
clean-css "^4.2.3" clean-css "^4.2.3"
...@@ -9350,6 +9369,20 @@ warning@^4.0.0: ...@@ -9350,6 +9369,20 @@ warning@^4.0.0:
dependencies: dependencies:
loose-envify "^1.0.0" loose-envify "^1.0.0"
webidl-conversions@^4.0.2:
version "4.0.2"
resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==
whatwg-url@^7.0.0:
version "7.1.0"
resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06"
integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==
dependencies:
lodash.sortby "^4.7.0"
tr46 "^1.0.1"
webidl-conversions "^4.0.2"
which-module@^2.0.0: which-module@^2.0.0:
version "2.0.0" version "2.0.0"
resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
...@@ -9394,24 +9427,24 @@ wordwrap@^1.0.0: ...@@ -9394,24 +9427,24 @@ wordwrap@^1.0.0:
resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=
workbox-background-sync@^6.0.2: workbox-background-sync@^6.1.0:
version "6.0.2" version "6.1.0"
resolved "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.0.2.tgz#9205f5ef7fbf68203b925bdc85bdaa31a34fbbe6" resolved "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.1.0.tgz#817de1ac1546fb6035759f151b0b4c5f0d3d9506"
integrity sha512-KQU2ntvbvFoBvCRm+EDpWAaykt4u/oaF5j3C6io0dZVWhFc/ZwgYDii8fb34LTenug3VPWQELdw9dNBCoP4b0w== integrity sha512-A7YWWmAqzLkWYqqxzxoX4mciVjdSHpfX+JMADXoJ9SoLb6l/QReNJE+CNPew+gGPH6JLKNjZeecDmUpXFhzFPA==
dependencies: dependencies:
workbox-core "^6.0.2" workbox-core "^6.1.0"
workbox-broadcast-update@^6.0.2: workbox-broadcast-update@^6.1.0:
version "6.0.2" version "6.1.0"
resolved "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.0.2.tgz#fc034277e631e4193dcee9f6b0a77e415b4ddefb" resolved "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.1.0.tgz#63c1dc2d519aa6a7b9ce1db2f8da3e1db45b3422"
integrity sha512-yCXYEln7nU8FkMDysYQPirpgFXtsdBtxruHbvZzRsxMHvAELf3j/o6Ufae1zjl8XanLF696sqSNxehpCGSD6tw== integrity sha512-70G821I1Lb4Ex+rcjfKCbuFJ4WL4RSQsqvcByt/bLpPTTLoE6+VvLX3+1QtSK8P2+NmOsKkAqx9qiQkUdGbaYw==
dependencies: dependencies:
workbox-core "^6.0.2" workbox-core "^6.1.0"
workbox-build@^6.0.2: workbox-build@^6.1.0:
version "6.0.2" version "6.1.0"
resolved "https://registry.npmjs.org/workbox-build/-/workbox-build-6.0.2.tgz#a23eebd6556cf473fedda77c08421b2d093efc32" resolved "https://registry.npmjs.org/workbox-build/-/workbox-build-6.1.0.tgz#e0ba4a0004da1079e934c7452c72c92ef7b52cba"
integrity sha512-Dukbt+p62Yzb12SXAmycTYvHngJ8aRtXy3hymsC8B6gxTCZmCZ0u5JuKhu7lNLbDwDkYE78lhFvT9SF+MXFz5A== integrity sha512-xJPqTEf+Pg9KAoTrNeVWpMjqi4cJIRn14i02bZjjbHsLNN38qrqc8xwAW48TwoPCYLjp104ST164/3RDgrc7yw==
dependencies: dependencies:
"@babel/core" "^7.11.1" "@babel/core" "^7.11.1"
"@babel/preset-env" "^7.11.0" "@babel/preset-env" "^7.11.0"
...@@ -9429,125 +9462,125 @@ workbox-build@^6.0.2: ...@@ -9429,125 +9462,125 @@ workbox-build@^6.0.2:
pretty-bytes "^5.3.0" pretty-bytes "^5.3.0"
rollup "^2.25.0" rollup "^2.25.0"
rollup-plugin-terser "^7.0.0" rollup-plugin-terser "^7.0.0"
source-map "^0.7.3" source-map "^0.8.0-beta.0"
source-map-url "^0.4.0" source-map-url "^0.4.0"
stringify-object "^3.3.0" stringify-object "^3.3.0"
strip-comments "^2.0.1" strip-comments "^2.0.1"
tempy "^0.6.0" tempy "^0.6.0"
upath "^1.2.0" upath "^1.2.0"
workbox-background-sync "^6.0.2" workbox-background-sync "^6.1.0"
workbox-broadcast-update "^6.0.2" workbox-broadcast-update "^6.1.0"
workbox-cacheable-response "^6.0.2" workbox-cacheable-response "^6.1.0"
workbox-core "^6.0.2" workbox-core "^6.1.0"
workbox-expiration "^6.0.2" workbox-expiration "^6.1.0"
workbox-google-analytics "^6.0.2" workbox-google-analytics "^6.1.0"
workbox-navigation-preload "^6.0.2" workbox-navigation-preload "^6.1.0"
workbox-precaching "^6.0.2" workbox-precaching "^6.1.0"
workbox-range-requests "^6.0.2" workbox-range-requests "^6.1.0"
workbox-recipes "^6.0.2" workbox-recipes "^6.1.0"
workbox-routing "^6.0.2" workbox-routing "^6.1.0"
workbox-strategies "^6.0.2" workbox-strategies "^6.1.0"
workbox-streams "^6.0.2" workbox-streams "^6.1.0"
workbox-sw "^6.0.2" workbox-sw "^6.1.0"
workbox-window "^6.0.2" workbox-window "^6.1.0"
workbox-cacheable-response@^6.0.2: workbox-cacheable-response@^6.1.0:
version "6.0.2" version "6.1.0"
resolved "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.0.2.tgz#00b1133c4c846a2874f32ae14206c0636bacfd87" resolved "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.1.0.tgz#a99fdfe1507848486579df7b204c30e4cd0a74f2"
integrity sha512-OrgFiYWkmFXDIbNRYSu+fchcfoZqyJ4yZbdc8WKUjr9v/MghKHfR9u7UI077xBkjno5J3YNpbwx73/no3HkrzA== integrity sha512-oDAi0vXHGaE5p9NOo4N180UTcEKm6t2JMgmlrq0PkEW2PZEu9YR/atSnCwzMW7xpDqpKWaQr/LGP4+eixS8gcA==
dependencies: dependencies:
workbox-core "^6.0.2" workbox-core "^6.1.0"
workbox-core@^6.0.2: workbox-core@^6.1.0:
version "6.0.2" version "6.1.0"
resolved "https://registry.npmjs.org/workbox-core/-/workbox-core-6.0.2.tgz#2f865cfe633890b4210fd6d6fdb049a6daed0914" resolved "https://registry.npmjs.org/workbox-core/-/workbox-core-6.1.0.tgz#2671b64f76550e83a4c2202676b67ce372e10881"
integrity sha512-Ksl6qeikGb+BOCILoCUJGxwlEQOeeqdpOnpOr9UDt3NtacPYbfYBmpYpKArw5DFWK+5geBsFqgUUlXThlCYfKQ== integrity sha512-s3KqTJfBreO4xCZpR2LB5p/EknAx8eg0QumKiIgxM4hRO0RtwS2pJvTieNEM23X3RqxRhqweriLD8To19KUvjg==
workbox-expiration@^6.0.2: workbox-expiration@^6.1.0:
version "6.0.2" version "6.1.0"
resolved "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.0.2.tgz#ac01e8d17f48daa31dc0872c09ee6f4d2cf28ccb" resolved "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.1.0.tgz#cf6bb384e49d0c92b79233c46671d9c6d82478a2"
integrity sha512-6+nbR18cklAdI3BPT675ytftXPwnVbXGR8mPWNWTJtl5y2urRYv56ZOJLD7FBFVkZ8EjWiRhNP/A0fkxgdKtWQ== integrity sha512-jp2xGk+LC4AhCoOxO/bC06GQkq/oVp0ZIf1zXLQh6OD2fWZPkXNjLLSuDnjXoGGPibYrq7gEE/xjAdYGjNWl1A==
dependencies: dependencies:
workbox-core "^6.0.2" workbox-core "^6.1.0"
workbox-google-analytics@^6.0.2: workbox-google-analytics@^6.1.0:
version "6.0.2" version "6.1.0"
resolved "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.0.2.tgz#7e3641adb30a3acb25006b244035631cf6f65019" resolved "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.1.0.tgz#cd34100536250abc54070bcc23603213eb8e47e4"
integrity sha512-xmYJurR1M6Pzc2SBM/E7AgwmBszhu/YYDzBnU+HJPZFLbTG97ASIJyTXV1vcczA/dNaS0miIf0cFqneozVlDRw== integrity sha512-BuUAJ747bMPC6IOKaQBXfotGybOfeHDRIC8ElF65ouB4O9kUJ3zh4EFxXmmJLgzTnji6265gXqNWcfuGiidk6A==
dependencies: dependencies:
workbox-background-sync "^6.0.2" workbox-background-sync "^6.1.0"
workbox-core "^6.0.2" workbox-core "^6.1.0"
workbox-routing "^6.0.2" workbox-routing "^6.1.0"
workbox-strategies "^6.0.2" workbox-strategies "^6.1.0"
workbox-navigation-preload@^6.0.2: workbox-navigation-preload@^6.1.0:
version "6.0.2" version "6.1.0"
resolved "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.0.2.tgz#bfd9c61096be921b830153a3004b7212220748dc" resolved "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.1.0.tgz#e36d19f0d49ab5277e6c4e13b92f40da8955d62f"
integrity sha512-7+ojLrjXmTFZBfGmUQIcBWB+xrFgXLMJGNQAtxT7Ta9A23rEWo8jqAgeuwAylebcORUlM+ztgYTV7eGp+AD+Yg== integrity sha512-N0c5Kmzu7lPKvirukbeZ3lN8KEAZU9xA4b1wmpV0VXUfRXVEk2ayXXqwHwMGFVi6FNCHiDLOcC8a2zW5kFLAeg==
dependencies: dependencies:
workbox-core "^6.0.2" workbox-core "^6.1.0"
workbox-precaching@^6.0.2: workbox-precaching@^6.1.0:
version "6.0.2" version "6.1.0"
resolved "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.0.2.tgz#cb45f290b0604bef1d9fc96bf42df82385d54e54" resolved "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.1.0.tgz#9ee3d28f27cd78daa62f5bd6a0d33f5682ac97a7"
integrity sha512-sqKWL2emzmGnfJpna+9RjUkUiqQO++AKfwljCbgkHg8wBbVLy/rnui3eelKgAI7D8R31LJFfiZkY/kXmwkjtlQ== integrity sha512-zjye8MVzieBVJ3sS0hFcbKLp7pTHMfJM17YqxCxB0KykXWnxLOpYnStQ9M+bjWJsKJOQvbkPqvq5u9+mtA923g==
dependencies: dependencies:
workbox-core "^6.0.2" workbox-core "^6.1.0"
workbox-routing "^6.0.2" workbox-routing "^6.1.0"
workbox-strategies "^6.0.2" workbox-strategies "^6.1.0"
workbox-range-requests@^6.0.2: workbox-range-requests@^6.1.0:
version "6.0.2" version "6.1.0"
resolved "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.0.2.tgz#3b50cbe8ddaaed7e3bfaa2dfdcd6a22e02fe7770" resolved "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.1.0.tgz#5fbe9edfbcdb97153ed5260575a54e53b0f85a2d"
integrity sha512-qCrDbH9AzDbCErde71Nys2iNZO9I9M9Jgl/9/Q67dGQVwFsEq73SuIzS2DGIBKqtIdC5QUigC3d7XJONajclUQ== integrity sha512-BO025BdAvc6vTBXJfkfibcikMFLmLRECt0FrVrTiiQafdO3jWH9qX9zTdrjYf6GkiIjvejvvmSYegwU1mL6N3Q==
dependencies: dependencies:
workbox-core "^6.0.2" workbox-core "^6.1.0"
workbox-recipes@^6.0.2: workbox-recipes@^6.1.0:
version "6.0.2" version "6.1.0"
resolved "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.0.2.tgz#ad4b3f26a71a7396004c4f617af318f3fd072208" resolved "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.1.0.tgz#b925f2727ace05ce8762a1b6da6c0d749fd687ee"
integrity sha512-ewZIHO4jYE6bnEeUIYS6joQy3l+MydpOsVr2F6EpE8ps++z1ScbSdLtJU+yu6WuO3lH44HFZLeFxYQqYm50QAA== integrity sha512-r8YLtMtQnvfkK1htnfrrX1CxKHglZJiVlqnct9rYIU17n2LCalHdI0zQrPqzYdLLHZxTX25UpBsdib0cAATy0A==
dependencies: dependencies:
workbox-cacheable-response "^6.0.2" workbox-cacheable-response "^6.1.0"
workbox-core "^6.0.2" workbox-core "^6.1.0"
workbox-expiration "^6.0.2" workbox-expiration "^6.1.0"
workbox-precaching "^6.0.2" workbox-precaching "^6.1.0"
workbox-routing "^6.0.2" workbox-routing "^6.1.0"
workbox-strategies "^6.0.2" workbox-strategies "^6.1.0"
workbox-routing@^6.0.2: workbox-routing@^6.1.0:
version "6.0.2" version "6.1.0"
resolved "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.0.2.tgz#8380bc322a2b1c44978df8ff6ae4e4d723f4e3f8" resolved "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.1.0.tgz#f885cb7801e2c9c5678f197656cf27a2b649c1d5"
integrity sha512-iQ9ch3fL1YpztDLfHNURaHQ0ispgPCdzWmZZhtSHUyy/+YkTlIiDVTbOQCIpHIrWlKQiim6X3K2ItIy1FW9+wA== integrity sha512-FXQ5cwb6Mk90fC0rfQLX0pN+r/N4eBafwkh/QanJUq0e6jMPdDFLrlsikZL/0LcXEx+yAkWLytoiS+d2HOEBOw==
dependencies: dependencies:
workbox-core "^6.0.2" workbox-core "^6.1.0"
workbox-strategies@^6.0.2: workbox-strategies@^6.1.0:
version "6.0.2" version "6.1.0"
resolved "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.0.2.tgz#f4383e2e5d46c1546e6e08048c9f5c9a7beb5137" resolved "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.1.0.tgz#9ddcee44408d2fb403f22a7989803b5c58560590"
integrity sha512-HjLnYCVS60U7OKhl5NIq8NAQXrotJQRDakmIONnRlQIlP2If/kAiQSUP3QCHMq4EeXGiF+/CdlR1/bhYBHZzZg== integrity sha512-HvUknzJdZWeV3x7Eq33a7TGAv9/r1TEiQK6kQ1QNzN+IKiqhIjnhKFHmMxb5hK1Gw9/aDSJTLNPDaLPfIJRQFQ==
dependencies: dependencies:
workbox-core "^6.0.2" workbox-core "^6.1.0"
workbox-streams@^6.0.2: workbox-streams@^6.1.0:
version "6.0.2" version "6.1.0"
resolved "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.0.2.tgz#07c19025af309ad3475e737018a05ed538bffacd" resolved "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.1.0.tgz#2dbc78ddc863b47aa4fe399d9385d3ed8567e881"
integrity sha512-bckftu/iMlg5LFXPZ6NX/FUc/w4illgxSuwtsZkQAO6Uen1EeegjfLyenO01/dwoyc3D/AlZepMdhv87XhE7HQ== integrity sha512-V80OIfoIXaDkjWIGFSae5sBJuaG2r4bXk6HKpntBYaVQ72LD1CgkXRmZKmLJQ9ltHCx9Vmq/7+q1OF5mTKb8Qw==
dependencies: dependencies:
workbox-core "^6.0.2" workbox-core "^6.1.0"
workbox-routing "^6.0.2" workbox-routing "^6.1.0"
workbox-sw@^6.0.2: workbox-sw@^6.1.0:
version "6.0.2" version "6.1.0"
resolved "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.0.2.tgz#cd1b8b02ceaaf1abe5804936158a87ec605d271e" resolved "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.1.0.tgz#dfaca1029264af71f13a90fdfb16cf8d64ed0537"
integrity sha512-EoOjbyy5bpoBoSqt2PIeDOZ/JJ41f+WJjb979PkfIUWw4F+F/w2uKJJrMA5fk+nWnVge83Fwy8nF3dWNsqOrdg== integrity sha512-e2jnIWSmNrpO9Psy4D6euDdRUW8FTXAdMxOj5O02gxa01fri1kfTSM9irDnTGKUiSGc+hlycsvzGdr8bnvzDiA==
workbox-window@^6.0.2: workbox-window@^6.1.0:
version "6.0.2" version "6.1.0"
resolved "https://registry.npmjs.org/workbox-window/-/workbox-window-6.0.2.tgz#9b47fdb7c088aa4e8b7d0c6cfda17c8bfca6bf7f" resolved "https://registry.npmjs.org/workbox-window/-/workbox-window-6.1.0.tgz#5856127f183bcccfd93655b0e3cba5f2432b9156"
integrity sha512-I/X+qUh1AwN9x/MxFbXsPn7DA27BMtzkXo55w1tBD8V54fv8nUCeC5E4RpXt/mlgdSwBztnURCQTWsdhTrSUjg== integrity sha512-sjnE+nTSnrBvYx5KmpESvsTC82P3yy8h5l4Ae4Q8uLqdH29UQ3bMd8puGVVhX1JZFCmV40cvrbZ1fUj+3/TQ9g==
dependencies: dependencies:
workbox-core "^6.0.2" workbox-core "^6.1.0"
wrap-ansi@^5.1.0: wrap-ansi@^5.1.0:
version "5.1.0" version "5.1.0"
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论