This commit is contained in:
A1300399510
2023-07-10 11:48:52 +08:00
parent 444c6bb486
commit 17c1e6b796
5 changed files with 643 additions and 939 deletions

1022
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -10,7 +10,6 @@
"axios": "^1.4.0", "axios": "^1.4.0",
"core-js": "^3.8.3", "core-js": "^3.8.3",
"element-plus": "^2.3.7", "element-plus": "^2.3.7",
"element-ui": "^2.15.13",
"sass-loader": "^8.0.0", "sass-loader": "^8.0.0",
"vue": "^3.2.13", "vue": "^3.2.13",
"vue-router": "^4.0.3", "vue-router": "^4.0.3",

View File

@@ -62,7 +62,7 @@ export default {
top: 0; top: 0;
left: 50%; left: 50%;
transform: translateX(-50%); transform: translateX(-50%);
width: 100vw; width: 100%;
min-width: 1200px; min-width: 1200px;
max-width: 1920px; max-width: 1920px;
height: 100%; height: 100%;

View File

@@ -58,7 +58,7 @@
</div> </div>
<div class="form-box shadow radius16 flex1"> <div class="form-box shadow radius16 flex1">
<div class="form-header">发布出租房源</div> <div class="form-header">发布{{ intermediary == 6 ? '求' : '出租' }}房源</div>
<div class="form-boxes"> <div class="form-boxes">
<div class="form-item" v-for="(item) in fieldinfoBasic" :key="item.field"> <div class="form-item" v-for="(item) in fieldinfoBasic" :key="item.field">
@@ -311,6 +311,50 @@
<!-- 所在区域 --> <!-- 所在区域 -->
<div class="form-option modeOne flexacenter" v-if="intermediary != 6 && item.field == 'location'"> <div class="form-option modeOne flexacenter" v-if="intermediary != 6 && item.field == 'location'">
<!-- <div ref="location" class="modeOne-item flexacenter"
:class="{ 'pitch': info['location'], 'disabled': verified == 1 }"
style="width: 640px;border-color: rgba(170, 170, 170, 1);"
@click="verified == 1 ? '' : areaPopState = true">
<div class="modeOne-text flexacenter" v-if="info['location']">
{{ locationData[Math.floor(info.location)].name }}
<img class="form-arrows" src="@/assets/img/edit/thin-arrow.svg" />
<img class="form-arrows form-arrows-disabled"
src="@/assets/img/edit/thin-arrow-disabled.svg" />
{{ locationData[Math.floor(info.location)].data[info.location] }}
</div>
<div class="modeOne-text flexacenter" style="color: #AAAAAA;" v-else>请选择</div>
<img class="arrows-icon" src="@/assets/img/edit/arrows.svg" />
<img class="arrows-icon arrows-disabled-icon" style="transform: rotate(0);"
src="@/assets/img/edit/disabled-icon.svg" />
<img class="arrows-icon-pitch" src="@/assets/img/edit/blue-arrow.svg" /> -->
<!-- 弹窗 -->
<!-- <div class="pop area-pop-box radius16" style="position: absolute;top: 58px;height: 614px;"
v-if="areaPopState">
<div class="area-box flexflex" style="height: 100%;">
<div class="area-left">
<div class="area-item flexacenter" :class="{ 'pitchpitch': index == locationValue }"
v-for="(item, index) in locationData" :key="index"
@click.stop="handleArea(index)">
<div class="dot"></div>
{{ item.name }}
<div class="semicircle-outside"></div>
</div>
</div>
<div class="area-right flex1">
<div class="area-item flexacenter"
:class="{ 'pitchpitch': info['location'] == index }"
v-for="(item, index) in locationData[locationValue].data" :key="index"
@click.stop="handleArea(index, item)">
<div class="area-item-name">{{ item }}</div>
<img class="area-item-pitch" src="@/assets/img/edit/blue-tick.svg" />
</div>
</div>
</div>
</div> -->
<!-- </div> -->
<el-popover placement="bottom" :width="640" :show-arrow="false" trigger="click" popper-style="padding: 0;border-radius:16px;">
<template #reference>
<div ref="location" class="modeOne-item flexacenter" <div ref="location" class="modeOne-item flexacenter"
:class="{ 'pitch': info['location'], 'disabled': verified == 1 }" :class="{ 'pitch': info['location'], 'disabled': verified == 1 }"
style="width: 640px;border-color: rgba(170, 170, 170, 1);" style="width: 640px;border-color: rgba(170, 170, 170, 1);"
@@ -327,9 +371,12 @@
<img class="arrows-icon arrows-disabled-icon" style="transform: rotate(0);" <img class="arrows-icon arrows-disabled-icon" style="transform: rotate(0);"
src="@/assets/img/edit/disabled-icon.svg" /> src="@/assets/img/edit/disabled-icon.svg" />
<img class="arrows-icon-pitch" src="@/assets/img/edit/blue-arrow.svg" /> <img class="arrows-icon-pitch" src="@/assets/img/edit/blue-arrow.svg" />
<!-- 弹窗 --> </div>
<div class="pop area-pop-box radius16" style="position: absolute;top: 58px;height: 614px;" </template>
v-if="areaPopState">
<!-- <div class="pop area-pop-box radius16" style="position: absolute;top: 58px;height: 614px;" -->
<!-- <div class="pop area-pop-box radius16" style="" v-if="areaPopState"> -->
<div class="pop area-pop-box radius16" style="">
<div class="area-box flexflex" style="height: 100%;"> <div class="area-box flexflex" style="height: 100%;">
<div class="area-left"> <div class="area-left">
<div class="area-item flexacenter" :class="{ 'pitchpitch': index == locationValue }" <div class="area-item flexacenter" :class="{ 'pitchpitch': index == locationValue }"
@@ -337,6 +384,7 @@
@click.stop="handleArea(index)"> @click.stop="handleArea(index)">
<div class="dot"></div> <div class="dot"></div>
{{ item.name }} {{ item.name }}
<div class="semicircle-outside"></div>
</div> </div>
</div> </div>
<div class="area-right flex1"> <div class="area-right flex1">
@@ -350,7 +398,8 @@
</div> </div>
</div> </div>
</div> </div>
</div>
</el-popover>
</div> </div>
<!-- 地址 --> <!-- 地址 -->
@@ -461,8 +510,7 @@
<img class="media-cross-icon" @click.stop="deleteMedia('video', index)" <img class="media-cross-icon" @click.stop="deleteMedia('video', index)"
src="@/assets/img/edit/cross-icon.png"> src="@/assets/img/edit/cross-icon.png">
<div class="media-item-box flexcenter"> <div class="media-item-box flexcenter">
<video class="media-img" :src="item.image" :autoplay="false"></video> <video class="media-img" preload="metadata" :src="item.image" :autoplay="false"></video>
<!-- <video class="media-img" preload="metadata" :src="item.image" :autoplay="false"></video> -->
</div> </div>
<img class="media-play-icon" src="@/assets/img/edit/play-icon.svg" /> <img class="media-play-icon" src="@/assets/img/edit/play-icon.svg" />
</div> </div>
@@ -477,7 +525,7 @@
</div> </div>
<!-- 照片 --> <!-- 照片 -->
<div class="media-box flexflex" v-if="item.field == 'images'"> <div class="media-box flexflex" v-if="item.field == 'images'" ref="images">
<div class="media-item flexcenter" :class="{ 'pitch': item['aid'] == info['aid'] }" <div class="media-item flexcenter" :class="{ 'pitch': item['aid'] == info['aid'] }"
v-for="(item, index) in info.images" :key="index"> v-for="(item, index) in info.images" :key="index">
<div class="media-item-box flexcenter"> <div class="media-item-box flexcenter">
@@ -526,7 +574,7 @@
<div class="asterisk" v-if="item.required == 1">*</div> <div class="asterisk" v-if="item.required == 1">*</div>
<div class="how" v-if="item.field == 'wechat'" @click="howBoxState = true">如何获取二维码</div> <div class="how" v-if="item.field == 'wechat'" @click="howBoxState = true">如何获取二维码</div>
</div> </div>
<div v-if="item.field == 'wechat'" class=""> <div v-if="item.field == 'wechat'" class="" ref="wechat">
<div class="contact-QRcode-box flexcenter" v-if="info.wechatdata['image']"> <div class="contact-QRcode-box flexcenter" v-if="info.wechatdata['image']">
<img class="contact-QRcode-img" :src="info.wechatdata['image']" /> <img class="contact-QRcode-img" :src="info.wechatdata['image']" />
</div> </div>
@@ -743,7 +791,7 @@ export default {
uniqid: "", uniqid: "",
token: "", token: "",
status: 0, // 发布 状态 status: 0, // 发布 状态
intermediary: 1, intermediary: 3,
type: "", // 编辑类型 type: "", // 编辑类型
locationData: [], locationData: [],
locationValue: 1, locationValue: 1,
@@ -847,6 +895,7 @@ export default {
const urlParams = new URLSearchParams(queryString); const urlParams = new URLSearchParams(queryString);
this.uniqid = urlParams.get('uniqid'); this.uniqid = urlParams.get('uniqid');
this.token = urlParams.get('token'); this.token = urlParams.get('token');
this.intermediary = urlParams.get('intermediary') || 3; // 默认写房东吧
this.verified = urlParams.get('verified') || 0; this.verified = urlParams.get('verified') || 0;
this.init(); this.init();
@@ -1022,8 +1071,10 @@ export default {
handleType(key, value) { handleType(key, value) {
if (key >>> 0 == key) { if (key >>> 0 == key) {
this.typeValue = key this.typeValue = key
this.info['type'] = null // this.info['type'] = null
this.typePopState = true this.typePopState = true
if (this.info['type'] >>> 0 != key) this.info['type'] = null
} else { } else {
this.info['type'] = key this.info['type'] = key
this.typeValueUltimately = value this.typeValueUltimately = value
@@ -1049,7 +1100,6 @@ export default {
handleArea(key, value) { handleArea(key, value) {
if (key >>> 0 == key) { if (key >>> 0 == key) {
this.locationValue = key this.locationValue = key
this.info['location'] = null
} else { } else {
this.info['location'] = key this.info['location'] = key
this.areaPopState = false this.areaPopState = false
@@ -1213,6 +1263,11 @@ export default {
if (info['images'] && info['images'].length > 1 && !info['aid']) { if (info['images'] && info['images'].length > 1 && !info['aid']) {
this.$message.error("请选择封面"); this.$message.error("请选择封面");
// data.field
let data = {
field: "images"
}
this.handleSubmitFailure(data)
return return
} }
@@ -1262,6 +1317,36 @@ export default {
} }
this.$message.error(res.message); this.$message.error(res.message);
this.handleSubmitFailure(data)
return
} else {
if (status == 0) return
let data = res.data
let uniqid = data['uniqid']
this.qrcodeBase64 = data['qrcode']
this.skipUrl = data['url']
if (this.isbindweixin != 1) this.succeedPopState = 1
else {
if (intermediary == 6) this.succeedPopState = 2
else this.succeedPopState = 3
}
}
this.$message.success(res.message);
}).finally(() => {
this.loading.close()
this.submitState = false
})
},
// 处理提交失败后的滚动和监听数据
handleSubmitFailure(data) {
// 获取 myRef 元素的位置信息 // 获取 myRef 元素的位置信息
let targetElement = this.$refs[data.field] let targetElement = this.$refs[data.field]
if (!targetElement) return if (!targetElement) return
@@ -1290,37 +1375,10 @@ export default {
if (top) top -= 150 if (top) top -= 150
else top = 300 else top = 300
// document.body.scrollTop = document.documentElement.scrollTop = top;
window.scrollTo({ window.scrollTo({
top, top,
behavior: "smooth" behavior: "smooth"
}) })
return
} else {
if (status == 0) return
let data = res.data
let uniqid = data['uniqid']
this.qrcodeBase64 = data['qrcode']
this.skipUrl = data['url']
if (this.isbindweixin != 1) this.succeedPopState = 1
else {
if (intermediary == 6) this.succeedPopState = 2
else this.succeedPopState = 3
}
}
this.$message.success(res.message);
}).finally(() => {
this.loading.close()
this.submitState = false
})
}, },
// 租金预算的 下拉框 展开隐藏事件 // 租金预算的 下拉框 展开隐藏事件
@@ -2708,13 +2766,13 @@ export default {
} }
&.area-pop-box { &.area-pop-box {
width: 640px; // width: 640px;
height: 695px; height: 695px;
left: 0; left: 0;
background-color: rgba(255, 255, 255, 1); background-color: rgba(255, 255, 255, 1);
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.349019607843137); // -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.0784313725490196);
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.349019607843137); // -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.0784313725490196);
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.349019607843137); // box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.0784313725490196);
overflow: hidden; overflow: hidden;
z-index: 101; z-index: 101;
@@ -2732,7 +2790,6 @@ export default {
height: calc(100% - 98px); height: calc(100% - 98px);
.area-left { .area-left {
// padding-top: 16px;
background-color: rgba(246, 246, 246, 1); background-color: rgba(246, 246, 246, 1);
.area-item { .area-item {
@@ -2747,8 +2804,6 @@ export default {
padding-left: 48px; padding-left: 48px;
cursor: pointer; cursor: pointer;
// border-bottom: 1px solid rgba(242, 242, 242, 1);
&:first-of-type { &:first-of-type {
padding-top: 16px; padding-top: 16px;
height: 86px; height: 86px;
@@ -2765,6 +2820,48 @@ export default {
font-weight: 650 !important; font-weight: 650 !important;
border: none !important; border: none !important;
.semicircle-outside {
position: absolute;
right: 0;
top: -20px;
width: 20px;
height: 20px;
background: #fff;
&::after {
content: "";
position: absolute;
right: 0;
top: 0;
width: 20px;
height: 20px;
border-radius: 0 0 100% 0;
background: #f6f6f6;
}
}
&::after {
content: "";
position: absolute;
right: 0;
bottom: -20px;
width: 20px;
height: 20px;
border-radius: 0 100% 0 0;
background: #f6f6f6;
}
&::before {
content: "";
position: absolute;
right: 0;
bottom: -20px;
width: 20px;
height: 20px;
background: #fff;
}
.dot { .dot {
display: block; display: block;
} }

354
yarn.lock
View File

@@ -1006,11 +1006,33 @@
"@babel/helper-validator-identifier" "^7.22.5" "@babel/helper-validator-identifier" "^7.22.5"
"to-fast-properties" "^2.0.0" "to-fast-properties" "^2.0.0"
"@ctrl/tinycolor@^3.4.1":
"integrity" "sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ=="
"resolved" "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.6.0.tgz"
"version" "3.6.0"
"@discoveryjs/json-ext@0.5.7": "@discoveryjs/json-ext@0.5.7":
"integrity" "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==" "integrity" "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw=="
"resolved" "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz" "resolved" "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz"
"version" "0.5.7" "version" "0.5.7"
"@element-plus/icons-vue@^2.0.6":
"integrity" "sha512-PSBn3elNoanENc1vnCfh+3WA9fimRC7n+fWkf3rE5jvv+aBohNHABC/KAR5KWPecxWxDTVT1ERpRbOMRcOV/vA=="
"resolved" "https://registry.npmjs.org/@element-plus/icons-vue/-/icons-vue-2.1.0.tgz"
"version" "2.1.0"
"@floating-ui/core@^1.3.1":
"integrity" "sha512-Bu+AMaXNjrpjh41znzHqaz3r2Nr8hHuHZT6V2LBKMhyMl0FgKA62PNYbqnfgmzOhoWZj70Zecisbo4H1rotP5g=="
"resolved" "https://registry.npmjs.org/@floating-ui/core/-/core-1.3.1.tgz"
"version" "1.3.1"
"@floating-ui/dom@^1.0.1":
"integrity" "sha512-21hhDEPOiWkGp0Ys4Wi6Neriah7HweToKra626CIK712B5m9qkdz54OP9gVldUg+URnBTpv/j/bi/skmGdstXQ=="
"resolved" "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.4.4.tgz"
"version" "1.4.4"
dependencies:
"@floating-ui/core" "^1.3.1"
"@hapi/hoek@^9.0.0": "@hapi/hoek@^9.0.0":
"integrity" "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==" "integrity" "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ=="
"resolved" "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz" "resolved" "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz"
@@ -1103,7 +1125,7 @@
"resolved" "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz" "resolved" "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz"
"version" "1.0.0-next.21" "version" "1.0.0-next.21"
"@popperjs/core@^2.4.4": "@popperjs/core@npm:@sxzz/popperjs-es@^2.11.7":
"integrity" "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==" "integrity" "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A=="
"resolved" "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz" "resolved" "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz"
"version" "2.11.8" "version" "2.11.8"
@@ -1238,6 +1260,18 @@
"resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz" "resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz"
"version" "7.0.12" "version" "7.0.12"
"@types/lodash-es@*", "@types/lodash-es@^4.17.6":
"integrity" "sha512-z0ptr6UI10VlU6l5MYhGwS4mC8DZyYer2mCoyysZtSF7p26zOX8UpbrV0YpNYLGS8K4PUFIyEr62IMFFjveSiQ=="
"resolved" "https://registry.npmjs.org/@types/lodash-es/-/lodash-es-4.17.7.tgz"
"version" "4.17.7"
dependencies:
"@types/lodash" "*"
"@types/lodash@*", "@types/lodash@^4.14.182":
"integrity" "sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg=="
"resolved" "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.195.tgz"
"version" "4.14.195"
"@types/mime@*": "@types/mime@*":
"integrity" "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==" "integrity" "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA=="
"resolved" "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz" "resolved" "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz"
@@ -1314,6 +1348,11 @@
dependencies: dependencies:
"@types/node" "*" "@types/node" "*"
"@types/web-bluetooth@^0.0.16":
"integrity" "sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ=="
"resolved" "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz"
"version" "0.0.16"
"@types/ws@^8.5.5": "@types/ws@^8.5.5":
"integrity" "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==" "integrity" "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg=="
"resolved" "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz" "resolved" "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz"
@@ -1678,6 +1717,28 @@
"resolved" "https://registry.npmjs.org/@vue/web-component-wrapper/-/web-component-wrapper-1.3.0.tgz" "resolved" "https://registry.npmjs.org/@vue/web-component-wrapper/-/web-component-wrapper-1.3.0.tgz"
"version" "1.3.0" "version" "1.3.0"
"@vueuse/core@^9.1.0":
"integrity" "sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw=="
"resolved" "https://registry.npmjs.org/@vueuse/core/-/core-9.13.0.tgz"
"version" "9.13.0"
dependencies:
"@types/web-bluetooth" "^0.0.16"
"@vueuse/metadata" "9.13.0"
"@vueuse/shared" "9.13.0"
"vue-demi" "*"
"@vueuse/metadata@9.13.0":
"integrity" "sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ=="
"resolved" "https://registry.npmjs.org/@vueuse/metadata/-/metadata-9.13.0.tgz"
"version" "9.13.0"
"@vueuse/shared@9.13.0":
"integrity" "sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw=="
"resolved" "https://registry.npmjs.org/@vueuse/shared/-/shared-9.13.0.tgz"
"version" "9.13.0"
dependencies:
"vue-demi" "*"
"@webassemblyjs/ast@^1.11.5", "@webassemblyjs/ast@1.11.6": "@webassemblyjs/ast@^1.11.5", "@webassemblyjs/ast@1.11.6":
"integrity" "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==" "integrity" "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz" "resolved" "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz"
@@ -1886,11 +1947,6 @@
"resolved" "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz" "resolved" "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz"
"version" "0.0.8" "version" "0.0.8"
"ansi-regex@^2.0.0":
"integrity" "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"
"version" "2.1.1"
"ansi-regex@^3.0.0": "ansi-regex@^3.0.0":
"integrity" "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==" "integrity" "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz" "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz"
@@ -1948,6 +2004,11 @@
"resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" "resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
"version" "2.1.0" "version" "2.1.0"
"async-validator@^4.2.5":
"integrity" "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg=="
"resolved" "https://registry.npmjs.org/async-validator/-/async-validator-4.2.5.tgz"
"version" "4.2.5"
"async@^2.6.4": "async@^2.6.4":
"integrity" "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==" "integrity" "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA=="
"resolved" "https://registry.npmjs.org/async/-/async-2.6.4.tgz" "resolved" "https://registry.npmjs.org/async/-/async-2.6.4.tgz"
@@ -2299,15 +2360,6 @@
"execa" "^1.0.0" "execa" "^1.0.0"
"is-wsl" "^2.1.1" "is-wsl" "^2.1.1"
"cliui@^4.0.0":
"integrity" "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ=="
"resolved" "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz"
"version" "4.1.0"
dependencies:
"string-width" "^2.1.1"
"strip-ansi" "^4.0.0"
"wrap-ansi" "^2.0.0"
"cliui@^7.0.2", "cliui@^7.0.4": "cliui@^7.0.2", "cliui@^7.0.4":
"integrity" "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" "integrity" "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ=="
"resolved" "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz" "resolved" "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz"
@@ -2331,11 +2383,6 @@
"resolved" "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz" "resolved" "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz"
"version" "1.0.4" "version" "1.0.4"
"code-point-at@^1.0.0":
"integrity" "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA=="
"resolved" "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz"
"version" "1.1.0"
"color-convert@^1.9.0": "color-convert@^1.9.0":
"integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="
"resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
@@ -2508,14 +2555,6 @@
"path-type" "^4.0.0" "path-type" "^4.0.0"
"yaml" "^1.10.0" "yaml" "^1.10.0"
"cp-cli@^2.0.0":
"integrity" "sha512-UfGOwpKeEVfdT+RFBGqlXTPZfHSJn31vaIOvr/YXLk494k6/xWUbN8+YZ2EvM6G8C8dGaU2Hy0nBmYCR5ux15g=="
"resolved" "https://registry.npmjs.org/cp-cli/-/cp-cli-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"fs-extra" "7.0.1"
"yargs" "12.0.5"
"cross-spawn@^6.0.0": "cross-spawn@^6.0.0":
"integrity" "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" "integrity" "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ=="
"resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" "resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz"
@@ -2657,7 +2696,7 @@
"resolved" "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz" "resolved" "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz"
"version" "3.1.2" "version" "3.1.2"
"dayjs@1.x": "dayjs@^1.11.3":
"integrity" "sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==" "integrity" "sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA=="
"resolved" "https://registry.npmjs.org/dayjs/-/dayjs-1.11.9.tgz" "resolved" "https://registry.npmjs.org/dayjs/-/dayjs-1.11.9.tgz"
"version" "1.11.9" "version" "1.11.9"
@@ -2697,11 +2736,6 @@
dependencies: dependencies:
"ms" "2.0.0" "ms" "2.0.0"
"decamelize@^1.2.0":
"integrity" "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA=="
"resolved" "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"
"version" "1.2.0"
"deepmerge@^1.5.2": "deepmerge@^1.5.2":
"integrity" "sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==" "integrity" "sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ=="
"resolved" "https://registry.npmjs.org/deepmerge/-/deepmerge-1.5.2.tgz" "resolved" "https://registry.npmjs.org/deepmerge/-/deepmerge-1.5.2.tgz"
@@ -2853,16 +2887,26 @@
"resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.447.tgz" "resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.447.tgz"
"version" "1.4.447" "version" "1.4.447"
"element-plus@^1.0.1-alpha.1": "element-plus@^2.3.7":
"integrity" "sha512-fxJaiwcTT+hFpItfmZ6khhR01Pre1p8JZ4aLKkHUXscMezmWphHl3vELDnUfz/6VoJRJe+SBXWYgPu/XFz59JQ==" "integrity" "sha512-h6TxclbaLUJxg/Bv5j/ZKsK+K5yadQliw5+R30HWyE69pXlqXTX24oYx+yw3pA4Dy+lqEDi5501FQ0CORk3OSA=="
"resolved" "https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.1.tgz" "resolved" "https://registry.npmjs.org/element-plus/-/element-plus-2.3.7.tgz"
"version" "1.0.1-alpha.1" "version" "2.3.7"
dependencies: dependencies:
"@popperjs/core" "^2.4.4" "@ctrl/tinycolor" "^3.4.1"
"cp-cli" "^2.0.0" "@element-plus/icons-vue" "^2.0.6"
"dayjs" "1.x" "@floating-ui/dom" "^1.0.1"
"lodash" "^4.17.20" "@popperjs/core" "npm:@sxzz/popperjs-es@^2.11.7"
"mitt" "^2.1.0" "@types/lodash" "^4.14.182"
"@types/lodash-es" "^4.17.6"
"@vueuse/core" "^9.1.0"
"async-validator" "^4.2.5"
"dayjs" "^1.11.3"
"escape-html" "^1.0.3"
"lodash" "^4.17.21"
"lodash-es" "^4.17.21"
"lodash-unified" "^1.0.2"
"memoize-one" "^6.0.0"
"normalize-wheel-es" "^1.2.0"
"emoji-regex@^8.0.0": "emoji-regex@^8.0.0":
"integrity" "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" "integrity" "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
@@ -2930,7 +2974,7 @@
"resolved" "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" "resolved" "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"
"version" "3.1.1" "version" "3.1.1"
"escape-html@~1.0.3": "escape-html@^1.0.3", "escape-html@~1.0.3":
"integrity" "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" "integrity" "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
"resolved" "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" "resolved" "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"
"version" "1.0.3" "version" "1.0.3"
@@ -3131,13 +3175,6 @@
"make-dir" "^3.0.2" "make-dir" "^3.0.2"
"pkg-dir" "^4.1.0" "pkg-dir" "^4.1.0"
"find-up@^3.0.0":
"integrity" "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg=="
"resolved" "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"locate-path" "^3.0.0"
"find-up@^4.0.0", "find-up@^4.1.0": "find-up@^4.0.0", "find-up@^4.1.0":
"integrity" "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" "integrity" "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="
"resolved" "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" "resolved" "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"
@@ -3185,15 +3222,6 @@
"jsonfile" "^6.0.1" "jsonfile" "^6.0.1"
"universalify" "^2.0.0" "universalify" "^2.0.0"
"fs-extra@7.0.1":
"integrity" "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw=="
"resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz"
"version" "7.0.1"
dependencies:
"graceful-fs" "^4.1.2"
"jsonfile" "^4.0.0"
"universalify" "^0.1.0"
"fs-monkey@^1.0.4": "fs-monkey@^1.0.4":
"integrity" "sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==" "integrity" "sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ=="
"resolved" "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.4.tgz" "resolved" "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.4.tgz"
@@ -3214,11 +3242,6 @@
"resolved" "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" "resolved" "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"
"version" "1.0.0-beta.2" "version" "1.0.0-beta.2"
"get-caller-file@^1.0.1":
"integrity" "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w=="
"resolved" "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz"
"version" "1.0.3"
"get-caller-file@^2.0.5": "get-caller-file@^2.0.5":
"integrity" "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" "integrity" "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
"resolved" "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" "resolved" "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"
@@ -3550,11 +3573,6 @@
"resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"
"version" "2.0.3" "version" "2.0.3"
"invert-kv@^2.0.0":
"integrity" "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA=="
"resolved" "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz"
"version" "2.0.0"
"ipaddr.js@^2.0.1": "ipaddr.js@^2.0.1":
"integrity" "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==" "integrity" "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ=="
"resolved" "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz" "resolved" "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz"
@@ -3601,13 +3619,6 @@
dependencies: dependencies:
"read-pkg-up" "^7.0.1" "read-pkg-up" "^7.0.1"
"is-fullwidth-code-point@^1.0.0":
"integrity" "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw=="
"resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"number-is-nan" "^1.0.0"
"is-fullwidth-code-point@^2.0.0": "is-fullwidth-code-point@^2.0.0":
"integrity" "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==" "integrity" "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w=="
"resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz" "resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"
@@ -3766,13 +3777,6 @@
"resolved" "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz" "resolved" "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz"
"version" "2.2.3" "version" "2.2.3"
"jsonfile@^4.0.0":
"integrity" "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg=="
"resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz"
"version" "4.0.0"
optionalDependencies:
"graceful-fs" "^4.1.6"
"jsonfile@^6.0.1": "jsonfile@^6.0.1":
"integrity" "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" "integrity" "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ=="
"resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz"
@@ -3807,13 +3811,6 @@
"picocolors" "^1.0.0" "picocolors" "^1.0.0"
"shell-quote" "^1.7.3" "shell-quote" "^1.7.3"
"lcid@^2.0.0":
"integrity" "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA=="
"resolved" "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"invert-kv" "^2.0.0"
"less-loader@^11.1.3": "less-loader@^11.1.3":
"integrity" "sha512-A5b7O8dH9xpxvkosNrP0dFp2i/dISOJa9WwGF3WJflfqIERE2ybxh1BFDj5CovC2+jCE4M354mk90hN6ziXlVw==" "integrity" "sha512-A5b7O8dH9xpxvkosNrP0dFp2i/dISOJa9WwGF3WJflfqIERE2ybxh1BFDj5CovC2+jCE4M354mk90hN6ziXlVw=="
"resolved" "https://registry.npmjs.org/less-loader/-/less-loader-11.1.3.tgz" "resolved" "https://registry.npmjs.org/less-loader/-/less-loader-11.1.3.tgz"
@@ -3869,14 +3866,6 @@
"emojis-list" "^3.0.0" "emojis-list" "^3.0.0"
"json5" "^2.1.2" "json5" "^2.1.2"
"locate-path@^3.0.0":
"integrity" "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A=="
"resolved" "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"p-locate" "^3.0.0"
"path-exists" "^3.0.0"
"locate-path@^5.0.0": "locate-path@^5.0.0":
"integrity" "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" "integrity" "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="
"resolved" "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz"
@@ -3884,6 +3873,16 @@
dependencies: dependencies:
"p-locate" "^4.1.0" "p-locate" "^4.1.0"
"lodash-es@*", "lodash-es@^4.17.21":
"integrity" "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw=="
"resolved" "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz"
"version" "4.17.21"
"lodash-unified@^1.0.2":
"integrity" "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ=="
"resolved" "https://registry.npmjs.org/lodash-unified/-/lodash-unified-1.0.3.tgz"
"version" "1.0.3"
"lodash.debounce@^4.0.8": "lodash.debounce@^4.0.8":
"integrity" "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" "integrity" "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow=="
"resolved" "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" "resolved" "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz"
@@ -3914,7 +3913,7 @@
"resolved" "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz" "resolved" "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz"
"version" "4.5.0" "version" "4.5.0"
"lodash@^4.17.14", "lodash@^4.17.20", "lodash@^4.17.21": "lodash@*", "lodash@^4.17.14", "lodash@^4.17.20", "lodash@^4.17.21":
"integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
"resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" "resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"
"version" "4.17.21" "version" "4.17.21"
@@ -3987,13 +3986,6 @@
dependencies: dependencies:
"semver" "^6.0.0" "semver" "^6.0.0"
"map-age-cleaner@^0.1.1":
"integrity" "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w=="
"resolved" "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz"
"version" "0.1.3"
dependencies:
"p-defer" "^1.0.0"
"mdn-data@2.0.14": "mdn-data@2.0.14":
"integrity" "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" "integrity" "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow=="
"resolved" "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz" "resolved" "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz"
@@ -4004,15 +3996,6 @@
"resolved" "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz" "resolved" "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"
"version" "0.3.0" "version" "0.3.0"
"mem@^4.0.0":
"integrity" "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w=="
"resolved" "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"map-age-cleaner" "^0.1.1"
"mimic-fn" "^2.0.0"
"p-is-promise" "^2.0.0"
"memfs@^3.4.3": "memfs@^3.4.3":
"integrity" "sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ==" "integrity" "sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ=="
"resolved" "https://registry.npmjs.org/memfs/-/memfs-3.6.0.tgz" "resolved" "https://registry.npmjs.org/memfs/-/memfs-3.6.0.tgz"
@@ -4020,6 +4003,11 @@
dependencies: dependencies:
"fs-monkey" "^1.0.4" "fs-monkey" "^1.0.4"
"memoize-one@^6.0.0":
"integrity" "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw=="
"resolved" "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz"
"version" "6.0.0"
"merge-descriptors@1.0.1": "merge-descriptors@1.0.1":
"integrity" "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" "integrity" "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w=="
"resolved" "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz" "resolved" "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz"
@@ -4077,7 +4065,7 @@
"resolved" "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz" "resolved" "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz"
"version" "1.2.0" "version" "1.2.0"
"mimic-fn@^2.0.0", "mimic-fn@^2.1.0": "mimic-fn@^2.1.0":
"integrity" "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" "integrity" "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="
"resolved" "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" "resolved" "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz"
"version" "2.1.0" "version" "2.1.0"
@@ -4113,11 +4101,6 @@
dependencies: dependencies:
"yallist" "^4.0.0" "yallist" "^4.0.0"
"mitt@^2.1.0":
"integrity" "sha512-ILj2TpLiysu2wkBbWjAmww7TkZb65aiQO+DkVdUTBpBXq+MHYiETENkKFMtsJZX1Lf4pe4QOrTSjIfUwN5lRdg=="
"resolved" "https://registry.npmjs.org/mitt/-/mitt-2.1.0.tgz"
"version" "2.1.0"
"mkdirp@^0.5.6": "mkdirp@^0.5.6":
"integrity" "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" "integrity" "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw=="
"resolved" "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz" "resolved" "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz"
@@ -4246,6 +4229,11 @@
"resolved" "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz" "resolved" "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz"
"version" "6.1.0" "version" "6.1.0"
"normalize-wheel-es@^1.2.0":
"integrity" "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw=="
"resolved" "https://registry.npmjs.org/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz"
"version" "1.2.0"
"npm-run-path@^2.0.0": "npm-run-path@^2.0.0":
"integrity" "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==" "integrity" "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw=="
"resolved" "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz" "resolved" "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"
@@ -4267,11 +4255,6 @@
dependencies: dependencies:
"boolbase" "^1.0.0" "boolbase" "^1.0.0"
"number-is-nan@^1.0.0":
"integrity" "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ=="
"resolved" "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"
"version" "1.0.1"
"object-assign@^4.0.1": "object-assign@^4.0.1":
"integrity" "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" "integrity" "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="
"resolved" "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" "resolved" "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
@@ -4364,44 +4347,18 @@
"strip-ansi" "^6.0.0" "strip-ansi" "^6.0.0"
"wcwidth" "^1.0.1" "wcwidth" "^1.0.1"
"os-locale@^3.0.0":
"integrity" "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q=="
"resolved" "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"execa" "^1.0.0"
"lcid" "^2.0.0"
"mem" "^4.0.0"
"p-defer@^1.0.0":
"integrity" "sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw=="
"resolved" "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz"
"version" "1.0.0"
"p-finally@^1.0.0": "p-finally@^1.0.0":
"integrity" "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" "integrity" "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow=="
"resolved" "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" "resolved" "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz"
"version" "1.0.0" "version" "1.0.0"
"p-is-promise@^2.0.0": "p-limit@^2.2.0":
"integrity" "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg=="
"resolved" "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz"
"version" "2.1.0"
"p-limit@^2.0.0", "p-limit@^2.2.0":
"integrity" "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" "integrity" "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="
"resolved" "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"
"version" "2.3.0" "version" "2.3.0"
dependencies: dependencies:
"p-try" "^2.0.0" "p-try" "^2.0.0"
"p-locate@^3.0.0":
"integrity" "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ=="
"resolved" "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"p-limit" "^2.0.0"
"p-locate@^4.1.0": "p-locate@^4.1.0":
"integrity" "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" "integrity" "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="
"resolved" "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz"
@@ -4482,11 +4439,6 @@
"no-case" "^3.0.4" "no-case" "^3.0.4"
"tslib" "^2.0.3" "tslib" "^2.0.3"
"path-exists@^3.0.0":
"integrity" "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ=="
"resolved" "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"
"version" "3.0.0"
"path-exists@^4.0.0": "path-exists@^4.0.0":
"integrity" "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" "integrity" "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="
"resolved" "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
@@ -5036,11 +4988,6 @@
"resolved" "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz" "resolved" "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz"
"version" "2.0.2" "version" "2.0.2"
"require-main-filename@^1.0.1":
"integrity" "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug=="
"resolved" "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz"
"version" "1.0.1"
"requires-port@^1.0.0": "requires-port@^1.0.0":
"integrity" "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" "integrity" "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="
"resolved" "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz" "resolved" "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz"
@@ -5293,11 +5240,6 @@
"parseurl" "~1.3.3" "parseurl" "~1.3.3"
"send" "0.18.0" "send" "0.18.0"
"set-blocking@^2.0.0":
"integrity" "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="
"resolved" "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"
"version" "2.0.0"
"setprototypeof@1.1.0": "setprototypeof@1.1.0":
"integrity" "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" "integrity" "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="
"resolved" "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz" "resolved" "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz"
@@ -5489,16 +5431,7 @@
dependencies: dependencies:
"safe-buffer" "~5.1.0" "safe-buffer" "~5.1.0"
"string-width@^1.0.1": "string-width@^2.1.1":
"integrity" "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw=="
"resolved" "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"code-point-at" "^1.0.0"
"is-fullwidth-code-point" "^1.0.0"
"strip-ansi" "^3.0.0"
"string-width@^2.0.0", "string-width@^2.1.1":
"integrity" "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==" "integrity" "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw=="
"resolved" "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz" "resolved" "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"
"version" "2.1.1" "version" "2.1.1"
@@ -5515,13 +5448,6 @@
"is-fullwidth-code-point" "^3.0.0" "is-fullwidth-code-point" "^3.0.0"
"strip-ansi" "^6.0.1" "strip-ansi" "^6.0.1"
"strip-ansi@^3.0.0", "strip-ansi@^3.0.1":
"integrity" "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg=="
"resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"ansi-regex" "^2.0.0"
"strip-ansi@^4.0.0": "strip-ansi@^4.0.0":
"integrity" "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==" "integrity" "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow=="
"resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz" "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz"
@@ -5737,11 +5663,6 @@
"resolved" "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz" "resolved" "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz"
"version" "2.1.0" "version" "2.1.0"
"universalify@^0.1.0":
"integrity" "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="
"resolved" "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz"
"version" "0.1.2"
"universalify@^2.0.0": "universalify@^2.0.0":
"integrity" "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" "integrity" "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ=="
"resolved" "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz" "resolved" "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz"
@@ -5805,6 +5726,11 @@
"resolved" "https://registry.npmjs.org/vue-cli-plugin-style-resources-loader/-/vue-cli-plugin-style-resources-loader-0.1.5.tgz" "resolved" "https://registry.npmjs.org/vue-cli-plugin-style-resources-loader/-/vue-cli-plugin-style-resources-loader-0.1.5.tgz"
"version" "0.1.5" "version" "0.1.5"
"vue-demi@*":
"integrity" "sha512-o9NUVpl/YlsGJ7t+xuqJKx8EBGf1quRhCiT6D/J0pfwmk9zUwYkC7yrF4SZCe6fETvSM3UNL2edcbYrSyc4QHA=="
"resolved" "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.5.tgz"
"version" "0.14.5"
"vue-hot-reload-api@^2.3.0": "vue-hot-reload-api@^2.3.0":
"integrity" "sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==" "integrity" "sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog=="
"resolved" "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz" "resolved" "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz"
@@ -5839,7 +5765,7 @@
"resolved" "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz" "resolved" "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz"
"version" "1.9.1" "version" "1.9.1"
"vue@*", "vue@^2 || ^3.2.13", "vue@^3.0.0-rc.9", "vue@^3.2.0", "vue@^3.2.13", "vue@3.3.4": "vue@*", "vue@^2 || ^3.2.13", "vue@^3.0.0-0 || ^2.6.0", "vue@^3.2.0", "vue@^3.2.13", "vue@3.3.4":
"integrity" "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==" "integrity" "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw=="
"resolved" "https://registry.npmjs.org/vue/-/vue-3.3.4.tgz" "resolved" "https://registry.npmjs.org/vue/-/vue-3.3.4.tgz"
"version" "3.3.4" "version" "3.3.4"
@@ -6030,11 +5956,6 @@
"tr46" "~0.0.3" "tr46" "~0.0.3"
"webidl-conversions" "^3.0.0" "webidl-conversions" "^3.0.0"
"which-module@^2.0.0":
"integrity" "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ=="
"resolved" "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz"
"version" "2.0.1"
"which@^1.2.9": "which@^1.2.9":
"integrity" "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" "integrity" "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="
"resolved" "https://registry.npmjs.org/which/-/which-1.3.1.tgz" "resolved" "https://registry.npmjs.org/which/-/which-1.3.1.tgz"
@@ -6054,14 +5975,6 @@
"resolved" "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz" "resolved" "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz"
"version" "2.0.1" "version" "2.0.1"
"wrap-ansi@^2.0.0":
"integrity" "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw=="
"resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"string-width" "^1.0.1"
"strip-ansi" "^3.0.1"
"wrap-ansi@^3.0.1": "wrap-ansi@^3.0.1":
"integrity" "sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==" "integrity" "sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ=="
"resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz" "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz"
@@ -6094,11 +6007,6 @@
"resolved" "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz" "resolved" "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz"
"version" "8.13.0" "version" "8.13.0"
"y18n@^3.2.1 || ^4.0.0":
"integrity" "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ=="
"resolved" "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz"
"version" "4.0.3"
"y18n@^5.0.5": "y18n@^5.0.5":
"integrity" "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" "integrity" "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="
"resolved" "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" "resolved" "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz"
@@ -6124,14 +6032,6 @@
"resolved" "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" "resolved" "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz"
"version" "1.10.2" "version" "1.10.2"
"yargs-parser@^11.1.1":
"integrity" "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ=="
"resolved" "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz"
"version" "11.1.1"
dependencies:
"camelcase" "^5.0.0"
"decamelize" "^1.2.0"
"yargs-parser@^20.2.2": "yargs-parser@^20.2.2":
"integrity" "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" "integrity" "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="
"resolved" "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz" "resolved" "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz"
@@ -6149,21 +6049,3 @@
"string-width" "^4.2.0" "string-width" "^4.2.0"
"y18n" "^5.0.5" "y18n" "^5.0.5"
"yargs-parser" "^20.2.2" "yargs-parser" "^20.2.2"
"yargs@12.0.5":
"integrity" "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw=="
"resolved" "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz"
"version" "12.0.5"
dependencies:
"cliui" "^4.0.0"
"decamelize" "^1.2.0"
"find-up" "^3.0.0"
"get-caller-file" "^1.0.1"
"os-locale" "^3.0.0"
"require-directory" "^2.1.1"
"require-main-filename" "^1.0.1"
"set-blocking" "^2.0.0"
"string-width" "^2.0.0"
"which-module" "^2.0.0"
"y18n" "^3.2.1 || ^4.0.0"
"yargs-parser" "^11.1.1"