mali-applet-ui 1.0.136 → 1.0.138
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/README.md +1 -1
- package/lib/components/ml-amount-input/ml-amount-input.vue +1 -0
- package/lib/components/ml-fix-uni-datetime-picker/ml-fix-uni-datetime-picker.vue +3 -1
- package/lib/components/ml-input/ml-input.vue +1 -0
- package/lib/components/ml-list-select-group/ml-list-select-group.vue +12 -1
- package/lib/components/ml-list-select-page/ml-list-select-page.vue +1 -0
- package/lib/components/ml-number-input/ml-number-input.vue +2 -1
- package/lib/components/ml-province-city-picker/ml-province-city-picker.vue +1 -0
- package/lib/components/ml-search-bar/ml-search-bar.vue +1 -0
- package/lib/components/ml-select-picker/ml-select-picker.vue +1 -0
- package/package.json +1 -1
- package/theme.scss +1 -0
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
:placeholder="endPlaceholderText" :disabled="true" />
|
|
21
21
|
</view>
|
|
22
22
|
<view v-if="showClearIcon" class="uni-date__icon-clear" @click.stop="clear">
|
|
23
|
-
<ml-icon name="delete-filling"
|
|
23
|
+
<ml-icon name="delete-filling"></ml-icon>
|
|
24
24
|
</view>
|
|
25
25
|
</view>
|
|
26
26
|
</slot>
|
|
@@ -836,6 +836,8 @@ export default {
|
|
|
836
836
|
/* #ifdef H5 */
|
|
837
837
|
cursor: pointer;
|
|
838
838
|
/* #endif */
|
|
839
|
+
color: $ml-input-clear-icon-color;
|
|
840
|
+
font-size: $ml-input-clear-icon-font-size;
|
|
839
841
|
}
|
|
840
842
|
|
|
841
843
|
.uni-date__x-input {
|
|
@@ -1,7 +1,18 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<view class="ml-list-select-group" :class="[className || '', type ? `type-${type}` : '']">
|
|
3
3
|
<slot>
|
|
4
|
-
|
|
4
|
+
<ml-list-group :border="border">
|
|
5
|
+
<ml-list-item
|
|
6
|
+
v-for="(item, index) in options"
|
|
7
|
+
:key="index"
|
|
8
|
+
:value="item[optValueField]"
|
|
9
|
+
:disabled="!!item[optDisabledField]"
|
|
10
|
+
:padding="false"
|
|
11
|
+
suffixIcon="none"
|
|
12
|
+
@disabled-click="disabledClickEvent(item)">
|
|
13
|
+
{{ item[optLabelField] }}
|
|
14
|
+
</ml-list-item>
|
|
15
|
+
</ml-list-group>
|
|
5
16
|
</slot>
|
|
6
17
|
</view>
|
|
7
18
|
</template>
|
|
@@ -274,7 +274,8 @@ export default {
|
|
|
274
274
|
align-items: center;
|
|
275
275
|
justify-content: center;
|
|
276
276
|
background: #fff;
|
|
277
|
-
color:
|
|
277
|
+
color: $ml-input-clear-icon-color;
|
|
278
|
+
font-size: $ml-input-clear-icon-font-size;
|
|
278
279
|
border-radius: 0 $ml-border-radius $ml-border-radius 0;
|
|
279
280
|
}
|
|
280
281
|
.ml-number-input-inp {
|
|
@@ -189,6 +189,7 @@ export default {
|
|
|
189
189
|
justify-content: center;
|
|
190
190
|
background: #fff;
|
|
191
191
|
color: $ml-input-clear-icon-color;
|
|
192
|
+
font-size: $ml-input-clear-icon-font-size;
|
|
192
193
|
border-radius: 0 $ml-border-radius $ml-border-radius 0;
|
|
193
194
|
}
|
|
194
195
|
.ml-province-city-picker-icon {
|
|
@@ -137,6 +137,7 @@ export default {
|
|
|
137
137
|
justify-content: center;
|
|
138
138
|
background: #eaebed;
|
|
139
139
|
color: $ml-input-clear-icon-color;
|
|
140
|
+
font-size: $ml-input-clear-icon-font-size;
|
|
140
141
|
border-radius: 0 $ml-border-radius $ml-border-radius 0;
|
|
141
142
|
}
|
|
142
143
|
.ml-search-bar-prefix-icon {
|
package/package.json
CHANGED
package/theme.scss
CHANGED