From e97fb8d669dba6f8093445ddd9d82ec77df962cc Mon Sep 17 00:00:00 2001 From: frank Date: Wed, 20 Nov 2024 10:36:26 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=94=AF=E4=BB=98?= =?UTF-8?q?=E5=AE=9D=E5=B0=8F=E7=A8=8B=E5=BA=8F=E6=97=A0=E6=B3=95build?= =?UTF-8?q?=E3=80=81onReachBottom=E6=94=AF=E6=8C=81=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=E7=9B=B4=E6=8E=A5=E8=B0=83=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index dce3729..994e034 100644 --- a/package.json +++ b/package.json @@ -83,11 +83,21 @@ "bin-wrapper": "npm:bin-wrapper-china" }, "dependencies": { - "@dcloudio/uni-app": "3.0.0-alpha-4010520240507001", - "@dcloudio/uni-app-plus": "3.0.0-alpha-4010520240507001", - "@dcloudio/uni-components": "3.0.0-alpha-4010520240507001", - "@dcloudio/uni-h5": "3.0.0-alpha-4010520240507001", - "@dcloudio/uni-mp-weixin": "3.0.0-alpha-4010520240507001", + "@dcloudio/uni-app": "3.0.0-4020920240930001", + "@dcloudio/uni-app-harmony": "3.0.0-4020920240930001", + "@dcloudio/uni-app-plus": "3.0.0-4020920240930001", + "@dcloudio/uni-components": "3.0.0-4020920240930001", + "@dcloudio/uni-h5": "3.0.0-4020920240930001", + "@dcloudio/uni-mp-alipay": "3.0.0-4020920240930001", + "@dcloudio/uni-mp-baidu": "3.0.0-4020920240930001", + "@dcloudio/uni-mp-jd": "3.0.0-4020920240930001", + "@dcloudio/uni-mp-kuaishou": "3.0.0-4020920240930001", + "@dcloudio/uni-mp-lark": "3.0.0-4020920240930001", + "@dcloudio/uni-mp-qq": "3.0.0-4020920240930001", + "@dcloudio/uni-mp-toutiao": "3.0.0-4020920240930001", + "@dcloudio/uni-mp-weixin": "3.0.0-4020920240930001", + "@dcloudio/uni-mp-xhs": "3.0.0-4020920240930001", + "@dcloudio/uni-quickapp-webview": "3.0.0-4020920240930001", "dayjs": "1.11.10", "pinia": "2.0.36", "pinia-plugin-persistedstate": "3.2.1", @@ -100,10 +110,10 @@ "@commitlint/cli": "^18.6.1", "@commitlint/config-conventional": "^18.6.3", "@dcloudio/types": "^3.4.8", - "@dcloudio/uni-automator": "3.0.0-alpha-4010520240507001", - "@dcloudio/uni-cli-shared": "3.0.0-alpha-4010520240507001", - "@dcloudio/uni-stacktracey": "3.0.0-alpha-4010520240507001", - "@dcloudio/vite-plugin-uni": "3.0.0-alpha-4010520240507001", + "@dcloudio/uni-automator": "3.0.0-4020920240930001", + "@dcloudio/uni-cli-shared": "3.0.0-4020920240930001", + "@dcloudio/uni-stacktracey": "3.0.0-4020920240930001", + "@dcloudio/vite-plugin-uni": "3.0.0-4020920240930001", "@esbuild/darwin-arm64": "0.20.2", "@esbuild/darwin-x64": "0.20.2", "@iconify-json/carbon": "^1.1.35", From 6b99490232e9a88cd96336286cb541a00fbdfe20 Mon Sep 17 00:00:00 2001 From: gladtoeatu Date: Tue, 26 Nov 2024 13:07:53 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dblock=E3=80=81template?= =?UTF-8?q?=E5=9C=A8IntrinsicElements=E6=9C=AA=E5=AE=9A=E4=B9=89=E7=9A=84?= =?UTF-8?q?=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复block、template在IntrinsicElements未定义的提示 --- src/types/global.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/types/global.d.ts b/src/types/global.d.ts index c243ef0..2a0a4e7 100644 --- a/src/types/global.d.ts +++ b/src/types/global.d.ts @@ -14,3 +14,10 @@ declare const __UNI_PLATFORM__: | 'quickapp-webview-union' declare const __VITE_APP_PROXY__: 'true' | 'false' + +declare namespace JSX { + interface IntrinsicElements { + template: any + block: any + } +}