1. 更新输入法适配o65 2. 移除TimeView的arc时间渲染 3. 修复“动态”页面没有背景的问题 4. 修复私信输入文本框不更新的问题
This commit is contained in:
+1
-1
@@ -30,7 +30,7 @@
|
|||||||
"@aiot-toolkit/jsc": "^1.0.7",
|
"@aiot-toolkit/jsc": "^1.0.7",
|
||||||
"@commitlint/cli": "^17.3.0",
|
"@commitlint/cli": "^17.3.0",
|
||||||
"@commitlint/config-conventional": "^17.3.0",
|
"@commitlint/config-conventional": "^17.3.0",
|
||||||
"aiot-toolkit": "2.0.4-beta.1",
|
"aiot-toolkit": "2.0.4-beta.3",
|
||||||
"babel-eslint": "^10.0.1",
|
"babel-eslint": "^10.0.1",
|
||||||
"eslint": "^6.0.0",
|
"eslint": "^6.0.0",
|
||||||
"eslint-config-prettier": "^6.0.0",
|
"eslint-config-prettier": "^6.0.0",
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ export function Init(){
|
|||||||
|
|
||||||
BGIMG_PAGES_MAP = {
|
BGIMG_PAGES_MAP = {
|
||||||
"pages/app/features/main": BGIMG_STYLES.Pink,
|
"pages/app/features/main": BGIMG_STYLES.Pink,
|
||||||
|
"pages/app/features/dynamic": BGIMG_STYLES.Pink,
|
||||||
"pages/app/features/savedcontent": BGIMG_STYLES.Yellow,
|
"pages/app/features/savedcontent": BGIMG_STYLES.Yellow,
|
||||||
"pages/search/search": BGIMG_STYLES.Blue,
|
"pages/search/search": BGIMG_STYLES.Blue,
|
||||||
"pages/search/searchresult": BGIMG_STYLES.Blue
|
"pages/search/searchresult": BGIMG_STYLES.Blue
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="sendbox">
|
<div class="sendbox">
|
||||||
<div class="textbox" @click="GoInput">
|
<div class="textbox" @click="GoInput">
|
||||||
<text class="textbox_text">{{this.input_text || "点此输入文字"}}</text>
|
<text class="textbox_text">{{input_text || "点此输入文字"}}</text>
|
||||||
</div>
|
</div>
|
||||||
<image @click="GoSend" src="/common/dmpage_sendbtn.png" style="margin-left: 215px; margin-top: 12px"></image>
|
<image @click="GoSend" src="/common/dmpage_sendbtn.png" style="margin-left: 215px; margin-top: 12px"></image>
|
||||||
</div>
|
</div>
|
||||||
@@ -10,11 +10,17 @@
|
|||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: ["input_text"],
|
props: ["input_text"],
|
||||||
|
onInit(){
|
||||||
|
this.$watch("input_text","onInputTextChanged")
|
||||||
|
},
|
||||||
GoInput(){
|
GoInput(){
|
||||||
this.$emit("clickinput")
|
this.$emit("clickinput")
|
||||||
},
|
},
|
||||||
GoSend(){
|
GoSend(){
|
||||||
this.$emit("clicksend")
|
this.$emit("clicksend")
|
||||||
|
},
|
||||||
|
onInputTextChanged(newV, oldV){
|
||||||
|
this.input_text = newV
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -2,17 +2,11 @@
|
|||||||
<div class="time-comp" style="{{compStyle}}">
|
<div class="time-comp" style="{{compStyle}}">
|
||||||
<div if="{{!useRectTime}}">
|
<div if="{{!useRectTime}}">
|
||||||
<div class="circle-time">
|
<div class="circle-time">
|
||||||
<text class="timetxt" style="transform: rotate(-12.8deg)">{{ hourHigh }}</text>
|
<text class="timetxt">{{ hourHigh }}</text>
|
||||||
<text class="timetxt" style="transform: rotate(-6.4deg); margin-bottom: 6px">
|
<text class="timetxt">{{ hourLow }}</text>
|
||||||
{{ hourLow }}
|
<text class="timetxt">:</text>
|
||||||
</text>
|
<text class="timetxt">{{ minuteHigh }}</text>
|
||||||
<text class="timetxt" style="padding: 0px; min-width: 10px; margin-bottom: 10px; justify-content: center">:</text>
|
<text class="timetxt">{{ minuteLow }}</text>
|
||||||
<text class="timetxt" style="transform: rotate(6.4deg); margin-bottom: 7px">
|
|
||||||
{{ minuteHigh }}
|
|
||||||
</text>
|
|
||||||
<text class="timetxt" style="transform: rotate(12.8deg); margin-bottom: 6px">
|
|
||||||
{{ minuteLow }}
|
|
||||||
</text>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div if="{{useRectTime}}" class="rect">
|
<div if="{{useRectTime}}" class="rect">
|
||||||
@@ -75,9 +69,8 @@ export default {
|
|||||||
|
|
||||||
.timetxt {
|
.timetxt {
|
||||||
font-size: 25px;
|
font-size: 25px;
|
||||||
font-weight: 900;
|
font-weight: 600;
|
||||||
top: 2px;
|
top: 2px;
|
||||||
padding: 2px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.rect-txt {
|
.rect-txt {
|
||||||
|
|||||||
+4
-1
@@ -120,7 +120,10 @@
|
|||||||
"about": "About the App"
|
"about": "About the App"
|
||||||
},
|
},
|
||||||
"dynamic": {
|
"dynamic": {
|
||||||
"title": "Dynamic"
|
"title": "Dynamic",
|
||||||
|
"detail": {
|
||||||
|
"title": "Dynamic Detail"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"user": {
|
"user": {
|
||||||
"title": "User"
|
"title": "User"
|
||||||
|
|||||||
+4
-1
@@ -125,7 +125,10 @@
|
|||||||
"title": "开源软件声明"
|
"title": "开源软件声明"
|
||||||
},
|
},
|
||||||
"dynamic": {
|
"dynamic": {
|
||||||
"title": "动态"
|
"title": "动态",
|
||||||
|
"detail": {
|
||||||
|
"title": "动态详情"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"user": {
|
"user": {
|
||||||
"title": "用户主页"
|
"title": "用户主页"
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
<import name="title-bar" src="@components/TitleBar/TitleBar.ux"></import>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="page">
|
||||||
|
<title-bar title="dynamic.detail.title"></title-bar>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less">
|
||||||
|
@import "@less/global.less";
|
||||||
|
@import "./detail.less";
|
||||||
|
</style>
|
||||||
File diff suppressed because one or more lines are too long
@@ -37,7 +37,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<image src="/common/dm_icon.png" style="margin-top: 8px" @click="GoDM()"></image>
|
<image src="/common/dm_icon.png" style="position: absolute; bottom: 0px" @click="GoDM()"></image>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@@ -2,21 +2,21 @@
|
|||||||
# yarn lockfile v1
|
# yarn lockfile v1
|
||||||
|
|
||||||
|
|
||||||
"@aiot-toolkit/[email protected].1":
|
"@aiot-toolkit/[email protected].3":
|
||||||
version "2.0.4-beta.1"
|
version "2.0.4-beta.3"
|
||||||
resolved "https://registry.yarnpkg.com/@aiot-toolkit/aiotpack/-/aiotpack-2.0.4-beta.1.tgz#0e9dbaa39986e10153096a74256067797f902822"
|
resolved "https://registry.yarnpkg.com/@aiot-toolkit/aiotpack/-/aiotpack-2.0.4-beta.3.tgz#2e612094b79654a01f2a72db5e09f2fccac66d87"
|
||||||
integrity sha512-C5yTBM2X18yGDJYGEoDiX4FUA77Xo2coyTsEsZ3dJmtMBbUb8DMvp6mdibFb3CAdBulkUBycEO94AvYfa7C6Jw==
|
integrity sha512-UhHquqfVkwzjgZwqzLMEsAHcyKK7OysQUJaIye1skWbHmJv7ZYs63yKab8ggrQIv930dBNghT0mXgVzjCGKhtA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aiot-toolkit/generator" "2.0.4-beta.1"
|
"@aiot-toolkit/generator" "2.0.4-beta.3"
|
||||||
"@aiot-toolkit/parser" "2.0.4-beta.1"
|
"@aiot-toolkit/parser" "2.0.4-beta.3"
|
||||||
"@aiot-toolkit/shared-utils" "2.0.4-beta.1"
|
"@aiot-toolkit/shared-utils" "2.0.4-beta.3"
|
||||||
"@hap-toolkit/aaptjs" "^2.0.0"
|
"@hap-toolkit/aaptjs" "^2.0.0"
|
||||||
"@rspack/core" "^1.1.8"
|
"@rspack/core" "^1.1.8"
|
||||||
aiot-parse5 "^1.0.0"
|
aiot-parse5 "^1.0.0"
|
||||||
archiver "^7.0.1"
|
archiver "^7.0.1"
|
||||||
babel-loader "^9.1.3"
|
babel-loader "^9.1.3"
|
||||||
fast-glob "^3.3.2"
|
fast-glob "^3.3.2"
|
||||||
file-lane "2.0.4-beta.1"
|
file-lane "2.0.4-beta.3"
|
||||||
file-loader "^6.2.0"
|
file-loader "^6.2.0"
|
||||||
fs-extra "^11.2.0"
|
fs-extra "^11.2.0"
|
||||||
jsrsasign "^11.1.0"
|
jsrsasign "^11.1.0"
|
||||||
@@ -28,22 +28,22 @@
|
|||||||
webpack-bundle-analyzer "^4.10.2"
|
webpack-bundle-analyzer "^4.10.2"
|
||||||
webpack-sources "^3.2.3"
|
webpack-sources "^3.2.3"
|
||||||
|
|
||||||
"@aiot-toolkit/[email protected].1":
|
"@aiot-toolkit/[email protected].3":
|
||||||
version "2.0.4-beta.1"
|
version "2.0.4-beta.3"
|
||||||
resolved "https://registry.yarnpkg.com/@aiot-toolkit/commander/-/commander-2.0.4-beta.1.tgz#20ae86e44cf96db245351cb02bd38b8dcf7ee67b"
|
resolved "https://registry.yarnpkg.com/@aiot-toolkit/commander/-/commander-2.0.4-beta.3.tgz#2b1023c6c12b2a97a466b4be875ff15666a0a44d"
|
||||||
integrity sha512-9LPq5cwtzoDAZfhug8aHWJsA6CyxSLoN66DcwINnI3O2JsbbuG5j0k6zjeZCd0UxSZ8E/oMjRqiBGfqHWqexJg==
|
integrity sha512-MjhG4h1/Gxp7E6klpd8xPaersnKbNHbzHJmkRWTrjNo6XpNrfrkvYorYPdVPXO6HPPDmIEXySN4g5DWtZb+Fxg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aiot-toolkit/shared-utils" "2.0.4-beta.1"
|
"@aiot-toolkit/shared-utils" "2.0.4-beta.3"
|
||||||
"@inquirer/prompts" "^3.0.3"
|
"@inquirer/prompts" "^3.0.3"
|
||||||
chalk "^4.0.0"
|
chalk "^4.0.0"
|
||||||
commander "^11.0.0"
|
commander "^11.0.0"
|
||||||
|
|
||||||
"@aiot-toolkit/[email protected].1":
|
"@aiot-toolkit/[email protected].3":
|
||||||
version "2.0.4-beta.1"
|
version "2.0.4-beta.3"
|
||||||
resolved "https://registry.yarnpkg.com/@aiot-toolkit/emulator/-/emulator-2.0.4-beta.1.tgz#d77be803a9d47bba469579cc549992bdd2e6823f"
|
resolved "https://registry.yarnpkg.com/@aiot-toolkit/emulator/-/emulator-2.0.4-beta.3.tgz#c5167f18d2b476f0978777bd570c73340762ea46"
|
||||||
integrity sha512-3oUGIs2h/9ZOvQpU/hIPT5WE4WsbgLbO3yTnfg1cznhke7Yznqg7UZfyfkzYoVN4wMu/SdvpwxDcLIABYUVj5g==
|
integrity sha512-WtoDqNf/3RnC+F6u/lvEUCweteLQYOVnC6j3Avy61/GFlI1SK2xgQA/Ti3H5EXaH1kHo8zVPfHk+GUNaJF3VWw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aiot-toolkit/shared-utils" "2.0.4-beta.1"
|
"@aiot-toolkit/shared-utils" "2.0.4-beta.3"
|
||||||
"@miwt/adb" "^0.9.0"
|
"@miwt/adb" "^0.9.0"
|
||||||
adm-zip "^0.5.16"
|
adm-zip "^0.5.16"
|
||||||
dayjs "^1.11.12"
|
dayjs "^1.11.12"
|
||||||
@@ -54,12 +54,12 @@
|
|||||||
portfinder "^1.0.32"
|
portfinder "^1.0.32"
|
||||||
semver "^7.6.3"
|
semver "^7.6.3"
|
||||||
|
|
||||||
"@aiot-toolkit/[email protected].1":
|
"@aiot-toolkit/[email protected].3":
|
||||||
version "2.0.4-beta.1"
|
version "2.0.4-beta.3"
|
||||||
resolved "https://registry.yarnpkg.com/@aiot-toolkit/generator/-/generator-2.0.4-beta.1.tgz#19c4f5827e7a6b19c62c39307cba8069f87eb0a8"
|
resolved "https://registry.yarnpkg.com/@aiot-toolkit/generator/-/generator-2.0.4-beta.3.tgz#01a7ff69db94dce6c7350926050e48f9d5a8c529"
|
||||||
integrity sha512-AAgaW+YoonVKb0CXaKZUr84sOpCDymn5B+f7xgEYHHftDynleEMHhTRSq88enTIMi3+Zio/eHjTxIq5IEFP1iA==
|
integrity sha512-T39C5PtlkZPbfuv1RvzIuSRlH3tI1savCwUvbodytdaaUs85uJTOeAV+LIQo8HdXovNp4t+W39a8vgfHobt5cA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aiot-toolkit/shared-utils" "2.0.4-beta.1"
|
"@aiot-toolkit/shared-utils" "2.0.4-beta.3"
|
||||||
source-map "^0.7.4"
|
source-map "^0.7.4"
|
||||||
ts-morph "^19.0.0"
|
ts-morph "^19.0.0"
|
||||||
|
|
||||||
@@ -68,13 +68,13 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@aiot-toolkit/jsc/-/jsc-1.0.7.tgz#c5c773ad532e9e274e978ca9bdb20fd0dcacfcb0"
|
resolved "https://registry.yarnpkg.com/@aiot-toolkit/jsc/-/jsc-1.0.7.tgz#c5c773ad532e9e274e978ca9bdb20fd0dcacfcb0"
|
||||||
integrity sha512-qW/Gy/02L+o3aMpu4KcxCX0RTTnRGYyDq62PrOvx/Siz7iFE2g7HV9Ib7mbp0iGXVqmA3W1cVZX3X9SgrQjqkQ==
|
integrity sha512-qW/Gy/02L+o3aMpu4KcxCX0RTTnRGYyDq62PrOvx/Siz7iFE2g7HV9Ib7mbp0iGXVqmA3W1cVZX3X9SgrQjqkQ==
|
||||||
|
|
||||||
"@aiot-toolkit/[email protected].1":
|
"@aiot-toolkit/[email protected].3":
|
||||||
version "2.0.4-beta.1"
|
version "2.0.4-beta.3"
|
||||||
resolved "https://registry.yarnpkg.com/@aiot-toolkit/parser/-/parser-2.0.4-beta.1.tgz#a1fed7f94025829a0b07e807f0aa53908d01e99b"
|
resolved "https://registry.yarnpkg.com/@aiot-toolkit/parser/-/parser-2.0.4-beta.3.tgz#29064c34028e99eaef41f7f2cb02fb36ba5c0999"
|
||||||
integrity sha512-NG0ofLoJOeEDovgycHCxh7d/8pQy9BLdgJt+Yjd/EhVsMJmxuIgPNmsduXubNTMRp/DrVYZ9NdE1yYBS/sznXA==
|
integrity sha512-gd1rBs/IQHS7LWTmN0jfYvSYLv8he4J/vOSIlBmturRtaUueYAL/50NKUDRuEHK+0xybwbUJbqapCDVBbeG1bQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aiot-toolkit/generator" "2.0.4-beta.1"
|
"@aiot-toolkit/generator" "2.0.4-beta.3"
|
||||||
"@aiot-toolkit/shared-utils" "2.0.4-beta.1"
|
"@aiot-toolkit/shared-utils" "2.0.4-beta.3"
|
||||||
"@babel/core" "^7.23.6"
|
"@babel/core" "^7.23.6"
|
||||||
"@babel/generator" "^7.24.10"
|
"@babel/generator" "^7.24.10"
|
||||||
"@babel/parser" "^7.24.8"
|
"@babel/parser" "^7.24.8"
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
colord "^2.9.3"
|
colord "^2.9.3"
|
||||||
css-tree "npm:aiot-css-tree@^2.3.1"
|
css-tree "npm:aiot-css-tree@^2.3.1"
|
||||||
csstree-validator "^3.0.0"
|
csstree-validator "^3.0.0"
|
||||||
file-lane "2.0.4-beta.1"
|
file-lane "2.0.4-beta.3"
|
||||||
fs-extra "^11.2.0"
|
fs-extra "^11.2.0"
|
||||||
google-protobuf "^3.21.2"
|
google-protobuf "^3.21.2"
|
||||||
less "^4.2.0"
|
less "^4.2.0"
|
||||||
@@ -102,10 +102,10 @@
|
|||||||
vela-chai "^1.0.2"
|
vela-chai "^1.0.2"
|
||||||
vela-quickapp-test "^1.0.13"
|
vela-quickapp-test "^1.0.13"
|
||||||
|
|
||||||
"@aiot-toolkit/[email protected].1":
|
"@aiot-toolkit/[email protected].3":
|
||||||
version "2.0.4-beta.1"
|
version "2.0.4-beta.3"
|
||||||
resolved "https://registry.yarnpkg.com/@aiot-toolkit/shared-utils/-/shared-utils-2.0.4-beta.1.tgz#485f69a7200bdd6d124a0135eddfd16893eb245c"
|
resolved "https://registry.yarnpkg.com/@aiot-toolkit/shared-utils/-/shared-utils-2.0.4-beta.3.tgz#976b3ab0450c24afede798fc841ab8dbe28bdd09"
|
||||||
integrity sha512-H3JJlyBMYByijqjh9UW55h2MQlQnXTrgKgRNMMq6P+U31zCRa1xsy2Myk2X+OzsXIASbzZZttIpIsmfiiEMKAQ==
|
integrity sha512-g91GPJcP8/6runi+JRIREge1HkEnE5xEHN9zcFrpxcDOdGPEmSbIRVkEp0ndUI9VW+PZ144pWPRBAaeGGKykTg==
|
||||||
dependencies:
|
dependencies:
|
||||||
ajv "^8.12.0"
|
ajv "^8.12.0"
|
||||||
ansi-colors "^4.1.3"
|
ansi-colors "^4.1.3"
|
||||||
@@ -2077,19 +2077,19 @@ aiot-parse5@^1.0.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
entities "^4.4.0"
|
entities "^4.4.0"
|
||||||
|
|
||||||
[email protected].1:
|
[email protected].3:
|
||||||
version "2.0.4-beta.1"
|
version "2.0.4-beta.3"
|
||||||
resolved "https://registry.yarnpkg.com/aiot-toolkit/-/aiot-toolkit-2.0.4-beta.1.tgz#06260e97f97c00f4a4c169341a905d9bdf5eaa18"
|
resolved "https://registry.yarnpkg.com/aiot-toolkit/-/aiot-toolkit-2.0.4-beta.3.tgz#a44bdfb183072f23c872a3d17102faed461d5a8e"
|
||||||
integrity sha512-Z6KaJsSUZZ1psuSmwueNOsPt+1+XliLF4vjINDBn7I8cGSjidu6jzwBddVKF3KZPdhAbMmAWTwHLZUbEG7ozFQ==
|
integrity sha512-giXnjYQn+1mXQnO+6L7cpQFQZrsE/yCkXdEJVRpt2ho91vKOdxq0Xptohzykf6jdh46nmsCibDlvLDNXnvnOhw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aiot-toolkit/aiotpack" "2.0.4-beta.1"
|
"@aiot-toolkit/aiotpack" "2.0.4-beta.3"
|
||||||
"@aiot-toolkit/commander" "2.0.4-beta.1"
|
"@aiot-toolkit/commander" "2.0.4-beta.3"
|
||||||
"@aiot-toolkit/emulator" "2.0.4-beta.1"
|
"@aiot-toolkit/emulator" "2.0.4-beta.3"
|
||||||
"@aiot-toolkit/shared-utils" "2.0.4-beta.1"
|
"@aiot-toolkit/shared-utils" "2.0.4-beta.3"
|
||||||
"@inquirer/prompts" "^5.3.0"
|
"@inquirer/prompts" "^5.3.0"
|
||||||
"@miwt/adb" "^0.9.0"
|
"@miwt/adb" "^0.9.0"
|
||||||
axios "^1.7.4"
|
axios "^1.7.4"
|
||||||
file-lane "2.0.4-beta.1"
|
file-lane "2.0.4-beta.3"
|
||||||
fs-extra "^11.2.0"
|
fs-extra "^11.2.0"
|
||||||
koa-router "^13.0.1"
|
koa-router "^13.0.1"
|
||||||
lodash "^4.17.21"
|
lodash "^4.17.21"
|
||||||
@@ -2126,7 +2126,7 @@ ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.4, ajv@^6.12.5:
|
|||||||
json-schema-traverse "^0.4.1"
|
json-schema-traverse "^0.4.1"
|
||||||
uri-js "^4.2.2"
|
uri-js "^4.2.2"
|
||||||
|
|
||||||
ajv@^8.0.1, ajv@^8.11.0, ajv@^8.12.0, ajv@^8.9.0:
|
ajv@^8.0.0, ajv@^8.0.1, ajv@^8.11.0, ajv@^8.12.0, ajv@^8.9.0:
|
||||||
version "8.17.1"
|
version "8.17.1"
|
||||||
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6"
|
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6"
|
||||||
integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==
|
integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==
|
||||||
@@ -3183,13 +3183,6 @@ debounce@^1.2.1:
|
|||||||
resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5"
|
resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5"
|
||||||
integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==
|
integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==
|
||||||
|
|
||||||
debug@4, debug@^4.3.5:
|
|
||||||
version "4.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a"
|
|
||||||
integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==
|
|
||||||
dependencies:
|
|
||||||
ms "^2.1.3"
|
|
||||||
|
|
||||||
debug@^2.2.0, debug@^2.3.3:
|
debug@^2.2.0, debug@^2.3.3:
|
||||||
version "2.6.9"
|
version "2.6.9"
|
||||||
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
||||||
@@ -3211,6 +3204,13 @@ debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3
|
|||||||
dependencies:
|
dependencies:
|
||||||
ms "^2.1.3"
|
ms "^2.1.3"
|
||||||
|
|
||||||
|
debug@^4.3.5:
|
||||||
|
version "4.4.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a"
|
||||||
|
integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==
|
||||||
|
dependencies:
|
||||||
|
ms "^2.1.3"
|
||||||
|
|
||||||
decamelize-keys@^1.1.0:
|
decamelize-keys@^1.1.0:
|
||||||
version "1.1.1"
|
version "1.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8"
|
resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8"
|
||||||
@@ -3963,12 +3963,12 @@ file-entry-cache@^6.0.1:
|
|||||||
dependencies:
|
dependencies:
|
||||||
flat-cache "^3.0.4"
|
flat-cache "^3.0.4"
|
||||||
|
|
||||||
[email protected].1:
|
[email protected].3:
|
||||||
version "2.0.4-beta.1"
|
version "2.0.4-beta.3"
|
||||||
resolved "https://registry.yarnpkg.com/file-lane/-/file-lane-2.0.4-beta.1.tgz#e2c5094124790b2fef286878cacbd12887d460fb"
|
resolved "https://registry.yarnpkg.com/file-lane/-/file-lane-2.0.4-beta.3.tgz#c1b216c725d5af73d078828a73f89f1e9930bec0"
|
||||||
integrity sha512-QUcEqeqTQD1gtKrKtcDYEKHUHcVA/5sKSGUhtqUJryfE82b1LOfGmn9ztmW+38CY2v9GNQJfIS/2rJWO+aIeUA==
|
integrity sha512-QaoDHBFBudImcdQWsJZE05MWHqJX1o8RosZZWyqwlc1q9Wk4CtfSg0PL1ZNZD21TsHw0dRv63VsGrr6MVtvM9g==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aiot-toolkit/shared-utils" "2.0.4-beta.1"
|
"@aiot-toolkit/shared-utils" "2.0.4-beta.3"
|
||||||
chokidar "^3.6.0"
|
chokidar "^3.6.0"
|
||||||
fs-extra "^11.2.0"
|
fs-extra "^11.2.0"
|
||||||
lodash "^4.17.21"
|
lodash "^4.17.21"
|
||||||
|
|||||||
Reference in New Issue
Block a user