白色主题

This commit is contained in:
2023-02-12 19:04:01 +08:00
parent d736a5912f
commit 57ab6fbb49
411 changed files with 1752 additions and 5304 deletions

View File

@@ -1,6 +1,6 @@
<view style="{{ customStyle }}" class="{{classPrefix}} {{bordered? classPrefix + '--border' : ''}} {{prefix}}-class">
<view style="{{ style }}" class="{{classPrefix}} {{bordered? classPrefix + '--border' : ''}} {{prefix}}-class">
<view class="{{classPrefix}}__label {{prefix}}-class-label">
<view wx:if="{{ label && label.length > 0 }}">{{ label }}</view>
<block wx:if="{{ label && label.length > 0 }}">{{ label }}</block>
<slot wx:else name="label" />
</view>
<view class="{{classPrefix}}__wrapper">
@@ -11,20 +11,27 @@
placeholder="{{placeholder}}"
placeholder-class="{{classPrefix}}__placeholder"
placeholder-style="{{placeholderStyle}}"
value="{{computedValue}}"
value="{{value}}"
auto-focus="{{autofocus}}"
fixed="{{fixed}}"
focus="{{focus}}"
cursor="{{cursor}}"
cursor-spacing="{{cursorSpacing}}"
auto-height="{{autosize}}"
adjust-position="{{adjustPosition}}"
confirm-type="{{confirmType}}"
confirm-hold="{{confirmHold}}"
disable-default-padding="{{disableDefaultPadding}}"
show-confirm-bar="{{showConfirmBar}}"
selection-start="{{selectionStart}}"
selection-end="{{selectionEnd}}"
hold-keyboard="{{holdKeyboard}}"
bindinput="onInput"
bindfocus="onFocus"
bindblur="onBlur"
bindconfirm="onConfirm"
bindlinechange="onLineChange"
bind:keyboardheightchange="onKeyboardHeightChange"
/>
<view
wx:if="{{indicator && (maxcharacter > 0 || maxlength > 0 )}}"