Merge branch 'base' into tabbar

This commit is contained in:
Burt 2024-12-02 16:25:40 +08:00
commit 6fe2b888e4
3 changed files with 724 additions and 190 deletions

View File

@ -13,6 +13,7 @@
"license": "MIT", "license": "MIT",
"repository": "https://github.com/feige996/unibest", "repository": "https://github.com/feige996/unibest",
"repository-gitee": "https://gitee.com/feige996/unibest", "repository-gitee": "https://gitee.com/feige996/unibest",
"repository-deprecated": "https://github.com/codercup/unibest",
"bugs": { "bugs": {
"url": "https://github.com/feige996/unibest/issues" "url": "https://github.com/feige996/unibest/issues"
}, },
@ -83,11 +84,21 @@
"bin-wrapper": "npm:bin-wrapper-china" "bin-wrapper": "npm:bin-wrapper-china"
}, },
"dependencies": { "dependencies": {
"@dcloudio/uni-app": "3.0.0-alpha-4010520240507001", "@dcloudio/uni-app": "3.0.0-4030620241128001",
"@dcloudio/uni-app-plus": "3.0.0-alpha-4010520240507001", "@dcloudio/uni-app-harmony": "3.0.0-4030620241128001",
"@dcloudio/uni-components": "3.0.0-alpha-4010520240507001", "@dcloudio/uni-app-plus": "3.0.0-4030620241128001",
"@dcloudio/uni-h5": "3.0.0-alpha-4010520240507001", "@dcloudio/uni-components": "3.0.0-4030620241128001",
"@dcloudio/uni-mp-weixin": "3.0.0-alpha-4010520240507001", "@dcloudio/uni-h5": "3.0.0-4030620241128001",
"@dcloudio/uni-mp-alipay": "3.0.0-4030620241128001",
"@dcloudio/uni-mp-baidu": "3.0.0-4030620241128001",
"@dcloudio/uni-mp-jd": "3.0.0-4030620241128001",
"@dcloudio/uni-mp-kuaishou": "3.0.0-4030620241128001",
"@dcloudio/uni-mp-lark": "3.0.0-4030620241128001",
"@dcloudio/uni-mp-qq": "3.0.0-4030620241128001",
"@dcloudio/uni-mp-toutiao": "3.0.0-4030620241128001",
"@dcloudio/uni-mp-weixin": "3.0.0-4030620241128001",
"@dcloudio/uni-mp-xhs": "3.0.0-4030620241128001",
"@dcloudio/uni-quickapp-webview": "3.0.0-4030620241128001",
"dayjs": "1.11.10", "dayjs": "1.11.10",
"pinia": "2.0.36", "pinia": "2.0.36",
"pinia-plugin-persistedstate": "3.2.1", "pinia-plugin-persistedstate": "3.2.1",
@ -100,10 +111,10 @@
"@commitlint/cli": "^18.6.1", "@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3", "@commitlint/config-conventional": "^18.6.3",
"@dcloudio/types": "^3.4.8", "@dcloudio/types": "^3.4.8",
"@dcloudio/uni-automator": "3.0.0-alpha-4010520240507001", "@dcloudio/uni-automator": "3.0.0-4020920240930001",
"@dcloudio/uni-cli-shared": "3.0.0-alpha-4010520240507001", "@dcloudio/uni-cli-shared": "3.0.0-4020920240930001",
"@dcloudio/uni-stacktracey": "3.0.0-alpha-4010520240507001", "@dcloudio/uni-stacktracey": "3.0.0-4020920240930001",
"@dcloudio/vite-plugin-uni": "3.0.0-alpha-4010520240507001", "@dcloudio/vite-plugin-uni": "3.0.0-4020920240930001",
"@esbuild/darwin-arm64": "0.20.2", "@esbuild/darwin-arm64": "0.20.2",
"@esbuild/darwin-x64": "0.20.2", "@esbuild/darwin-x64": "0.20.2",
"@iconify-json/carbon": "^1.1.35", "@iconify-json/carbon": "^1.1.35",

878
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -14,3 +14,10 @@ declare const __UNI_PLATFORM__:
| 'quickapp-webview-union' | 'quickapp-webview-union'
declare const __VITE_APP_PROXY__: 'true' | 'false' declare const __VITE_APP_PROXY__: 'true' | 'false'
declare namespace JSX {
interface IntrinsicElements {
template: any
block: any
}
}