Skip to content

Commit

Permalink
feat: input also support adjustPosition in alipay
Browse files Browse the repository at this point in the history
  • Loading branch information
rayhomie committed Jun 27, 2024
1 parent 47a767f commit fdf2918
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions compiled/alipay/src/Input/index.axml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
disabled="{{ disabled }}"
value="{{ state.value }}"
type="{{ type }}"
adjust-position="{{ adjustPosition }}"
password="{{ password }}"
placeholder="{{ placeholder }}"
placeholder-class="ant-input-placeholder {{ placeholderClassName ? placeholderClassName : '' }}"
Expand Down
2 changes: 1 addition & 1 deletion compiled/wechat/src/Input/index.wxml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
cursor-spacing="{{ cursorSpacing }}"
always-embed="{{ alwaysEmbed }}"
cursor-color="{{ cursorColor }}"
adjust-position="{{ adjustPosition }}"
hold-keyboard="{{ holdKeyboard }}"
adjust-position="{{ adjustPosition }}"
password="{{ password }}"
placeholder="{{ placeholder }}"
placeholder-class="ant-input-placeholder {{ placeholderClassName ? placeholderClassName : '' }}"
Expand Down
2 changes: 1 addition & 1 deletion src/Input/index.axml.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ export default (
cursor-spacing={cursorSpacing}
always-embed={alwaysEmbed}
cursor-color={cursorColor}
adjust-position={adjustPosition}
hold-keyboard={holdKeyboard}
/// #endif
adjust-position={adjustPosition}
password={password}
placeholder={placeholder}
placeholder-class={`ant-input-placeholder ${
Expand Down

0 comments on commit fdf2918

Please sign in to comment.