fix(mini-user): address textarea freeze, input align, wechat share invoke
CI / verify (pull_request) Has been cancelled

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-15 20:48:33 +08:00
parent 966ddc9219
commit 9a3ccabcc9
10 changed files with 299 additions and 46 deletions
+4 -1
View File
@@ -26,6 +26,8 @@ export {
setWechatShareData,
canUseWechatShare,
getWechatShareLink,
shareViaWechatSdk,
tryInvokeSharePanel,
} from './share';
export type { WechatShareData } from './share';
export {
@@ -48,7 +50,7 @@ import { getWechatLocation, getWechatLocationDetailed } from './location';
import { scanQrCode } from './scan';
import { invokeWechatPay } from './pay';
import { chooseWechatImages } from './chooseImage';
import { setWechatShareData } from './share';
import { setWechatShareData, shareViaWechatSdk } from './share';
import {
wechatLogin,
handleWechatOAuthCallback,
@@ -79,5 +81,6 @@ export function createWeixinSdk(config: WeixinSdkConfig) {
}),
setShare: (data: Parameters<typeof setWechatShareData>[1]) =>
setWechatShareData(config, data),
share: (data: Parameters<typeof shareViaWechatSdk>[1]) => shareViaWechatSdk(config, data),
};
}