build: compile 1.10.23

This commit is contained in:
landluck 2023-07-28 14:14:11 +08:00
parent 88a36b5647
commit ea8f92f919
8 changed files with 108 additions and 76 deletions

View File

@ -18,14 +18,16 @@ VantComponent({
type: String, type: String,
value: 'default', value: 'default',
}, },
useSlot: Boolean,
className: String, className: String,
customStyle: String, customStyle: String,
asyncClose: Boolean, asyncClose: Boolean,
messageAlign: String, messageAlign: String,
beforeClose: null, beforeClose: null,
overlayStyle: String, overlayStyle: String,
useSlot: Boolean,
useTitleSlot: Boolean, useTitleSlot: Boolean,
useConfirmButtonSlot: Boolean,
useCancelButtonSlot: Boolean,
showCancelButton: Boolean, showCancelButton: Boolean,
closeOnClickOverlay: Boolean, closeOnClickOverlay: Boolean,
confirmButtonOpenType: String, confirmButtonOpenType: String,

View File

@ -70,44 +70,53 @@
</van-goods-action> </van-goods-action>
<view wx:elif="{{ showCancelButton || showConfirmButton }}" class="van-hairline--top van-dialog__footer"> <view wx:elif="{{ showCancelButton || showConfirmButton }}" class="van-hairline--top van-dialog__footer">
<van-button <block wx:if="{{ showCancelButton }}">
wx:if="{{ showCancelButton }}" <slot wx:if="{{ useCancelButtonSlot }}" name="cancel-button" />
size="large"
loading="{{ loading.cancel }}"
class="van-dialog__button van-hairline--right"
custom-class="van-dialog__cancel cancle-button-class"
custom-style="color: {{ cancelButtonColor }}"
bind:click="onCancel"
>
{{ cancelButtonText }}
</van-button>
<van-button
wx:if="{{ showConfirmButton }}"
size="large"
class="van-dialog__button"
loading="{{ loading.confirm }}"
custom-class="van-dialog__confirm confirm-button-class"
custom-style="color: {{ confirmButtonColor }}"
open-type="{{ confirmButtonOpenType }}" <van-button
lang="{{ lang }}" wx:else
business-id="{{ businessId }}" size="large"
session-from="{{ sessionFrom }}" loading="{{ loading.cancel }}"
send-message-title="{{ sendMessageTitle }}" class="van-dialog__button van-hairline--right"
send-message-path="{{ sendMessagePath }}" custom-class="van-dialog__cancel cancle-button-class"
send-message-img="{{ sendMessageImg }}" custom-style="color: {{ cancelButtonColor }}"
show-message-card="{{ showMessageCard }}" bind:click="onCancel"
app-parameter="{{ appParameter }}" >
{{ cancelButtonText }}
</van-button>
</block>
bind:click="onConfirm" <block wx:if="{{ showConfirmButton }}">
bindgetuserinfo="onGetUserInfo" <slot wx:if="{{ useConfirmButtonSlot }}" name="confirm-button" />
bindcontact="onContact"
bindgetphonenumber="onGetPhoneNumber" <van-button
binderror="onError" wx:else
bindlaunchapp="onLaunchApp" size="large"
bindopensetting="onOpenSetting" class="van-dialog__button"
> loading="{{ loading.confirm }}"
{{ confirmButtonText }} custom-class="van-dialog__confirm confirm-button-class"
</van-button> custom-style="color: {{ confirmButtonColor }}"
open-type="{{ confirmButtonOpenType }}"
lang="{{ lang }}"
business-id="{{ businessId }}"
session-from="{{ sessionFrom }}"
send-message-title="{{ sendMessageTitle }}"
send-message-path="{{ sendMessagePath }}"
send-message-img="{{ sendMessageImg }}"
show-message-card="{{ showMessageCard }}"
app-parameter="{{ appParameter }}"
bind:click="onConfirm"
bindgetuserinfo="onGetUserInfo"
bindcontact="onContact"
bindgetphonenumber="onGetPhoneNumber"
binderror="onError"
bindlaunchapp="onLaunchApp"
bindopensetting="onOpenSetting"
>
{{ confirmButtonText }}
</van-button>
</block>
</view> </view>
</van-popup> </van-popup>

View File

@ -53,6 +53,10 @@ VantComponent({
type: String, type: String,
value: 'clear', value: 'clear',
}, },
cursorSpacing: {
type: Number,
value: 0,
},
}, },
methods: { methods: {
onChange(event) { onChange(event) {

View File

@ -28,6 +28,7 @@
input-class="input-class" input-class="input-class"
placeholder="{{ placeholder }}" placeholder="{{ placeholder }}"
placeholder-style="{{ placeholderStyle }}" placeholder-style="{{ placeholderStyle }}"
cursor-spacing="{{ cursorSpacing }}"
custom-style="padding: 5px 10px 5px 0; background-color: transparent;" custom-style="padding: 5px 10px 5px 0; background-color: transparent;"
bind:blur="onBlur" bind:blur="onBlur"
bind:focus="onFocus" bind:focus="onFocus"

View File

@ -20,14 +20,16 @@ var utils_1 = require("../common/utils");
type: String, type: String,
value: 'default', value: 'default',
}, },
useSlot: Boolean,
className: String, className: String,
customStyle: String, customStyle: String,
asyncClose: Boolean, asyncClose: Boolean,
messageAlign: String, messageAlign: String,
beforeClose: null, beforeClose: null,
overlayStyle: String, overlayStyle: String,
useSlot: Boolean,
useTitleSlot: Boolean, useTitleSlot: Boolean,
useConfirmButtonSlot: Boolean,
useCancelButtonSlot: Boolean,
showCancelButton: Boolean, showCancelButton: Boolean,
closeOnClickOverlay: Boolean, closeOnClickOverlay: Boolean,
confirmButtonOpenType: String, confirmButtonOpenType: String,

View File

@ -70,44 +70,53 @@
</van-goods-action> </van-goods-action>
<view wx:elif="{{ showCancelButton || showConfirmButton }}" class="van-hairline--top van-dialog__footer"> <view wx:elif="{{ showCancelButton || showConfirmButton }}" class="van-hairline--top van-dialog__footer">
<van-button <block wx:if="{{ showCancelButton }}">
wx:if="{{ showCancelButton }}" <slot wx:if="{{ useCancelButtonSlot }}" name="cancel-button" />
size="large"
loading="{{ loading.cancel }}"
class="van-dialog__button van-hairline--right"
custom-class="van-dialog__cancel cancle-button-class"
custom-style="color: {{ cancelButtonColor }}"
bind:click="onCancel"
>
{{ cancelButtonText }}
</van-button>
<van-button
wx:if="{{ showConfirmButton }}"
size="large"
class="van-dialog__button"
loading="{{ loading.confirm }}"
custom-class="van-dialog__confirm confirm-button-class"
custom-style="color: {{ confirmButtonColor }}"
open-type="{{ confirmButtonOpenType }}" <van-button
lang="{{ lang }}" wx:else
business-id="{{ businessId }}" size="large"
session-from="{{ sessionFrom }}" loading="{{ loading.cancel }}"
send-message-title="{{ sendMessageTitle }}" class="van-dialog__button van-hairline--right"
send-message-path="{{ sendMessagePath }}" custom-class="van-dialog__cancel cancle-button-class"
send-message-img="{{ sendMessageImg }}" custom-style="color: {{ cancelButtonColor }}"
show-message-card="{{ showMessageCard }}" bind:click="onCancel"
app-parameter="{{ appParameter }}" >
{{ cancelButtonText }}
</van-button>
</block>
bind:click="onConfirm" <block wx:if="{{ showConfirmButton }}">
bindgetuserinfo="onGetUserInfo" <slot wx:if="{{ useConfirmButtonSlot }}" name="confirm-button" />
bindcontact="onContact"
bindgetphonenumber="onGetPhoneNumber" <van-button
binderror="onError" wx:else
bindlaunchapp="onLaunchApp" size="large"
bindopensetting="onOpenSetting" class="van-dialog__button"
> loading="{{ loading.confirm }}"
{{ confirmButtonText }} custom-class="van-dialog__confirm confirm-button-class"
</van-button> custom-style="color: {{ confirmButtonColor }}"
open-type="{{ confirmButtonOpenType }}"
lang="{{ lang }}"
business-id="{{ businessId }}"
session-from="{{ sessionFrom }}"
send-message-title="{{ sendMessageTitle }}"
send-message-path="{{ sendMessagePath }}"
send-message-img="{{ sendMessageImg }}"
show-message-card="{{ showMessageCard }}"
app-parameter="{{ appParameter }}"
bind:click="onConfirm"
bindgetuserinfo="onGetUserInfo"
bindcontact="onContact"
bindgetphonenumber="onGetPhoneNumber"
binderror="onError"
bindlaunchapp="onLaunchApp"
bindopensetting="onOpenSetting"
>
{{ confirmButtonText }}
</van-button>
</block>
</view> </view>
</van-popup> </van-popup>

View File

@ -55,6 +55,10 @@ var version_1 = require("../common/version");
type: String, type: String,
value: 'clear', value: 'clear',
}, },
cursorSpacing: {
type: Number,
value: 0,
},
}, },
methods: { methods: {
onChange: function (event) { onChange: function (event) {

View File

@ -28,6 +28,7 @@
input-class="input-class" input-class="input-class"
placeholder="{{ placeholder }}" placeholder="{{ placeholder }}"
placeholder-style="{{ placeholderStyle }}" placeholder-style="{{ placeholderStyle }}"
cursor-spacing="{{ cursorSpacing }}"
custom-style="padding: 5px 10px 5px 0; background-color: transparent;" custom-style="padding: 5px 10px 5px 0; background-color: transparent;"
bind:blur="onBlur" bind:blur="onBlur"
bind:focus="onFocus" bind:focus="onFocus"