uview-plus 3.2.12 → 3.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/changelog.md
CHANGED
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
</slot>
|
|
31
31
|
<view class="u-cell__right-icon-wrap" v-if="$slots['right-icon'] || isLink"
|
|
32
32
|
:class="[`u-cell__right-icon-wrap--${arrowDirection}`]">
|
|
33
|
-
<
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
<u-icon v-if="rightIcon && !$slots['right-icon']" :name="rightIcon" :custom-style="rightIconStyle" :color="disabled ? '#c8c9cc' : 'info'"
|
|
34
|
+
:size="size === 'large' ? 18 : 16"></u-icon>
|
|
35
|
+
<slot v-else name="right-icon">
|
|
36
36
|
</slot>
|
|
37
37
|
</view>
|
|
38
38
|
<view class="u-cell__right-icon-wrap" v-if="$slots['righticon']"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<view v-if="hasInput">
|
|
2
|
+
<view v-if="hasInput" class="u-datetime-picker">
|
|
3
3
|
<u-input
|
|
4
4
|
:placeholder="placeholder"
|
|
5
5
|
border="surround"
|
|
@@ -443,4 +443,7 @@
|
|
|
443
443
|
|
|
444
444
|
<style lang="scss" scoped>
|
|
445
445
|
@import '../../libs/css/components.scss';
|
|
446
|
+
.u-datetime-picker {
|
|
447
|
+
width: 100%;
|
|
448
|
+
}
|
|
446
449
|
</style>
|