dolphin-weex-ui 2.4.25 → 2.4.27
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 +10 -0
- package/dist/index.native.js +6 -2
- package/dist/index.native.js.map +1 -1
- package/dist/index.web.js +10 -5
- package/dist/index.web.js.map +1 -1
- package/package.json +1 -1
- package/packages/dof-cell/colmo.css +3 -0
- package/packages/dof-cell/index.vue +3 -2
package/package.json
CHANGED
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
:code="avatarIconFont"
|
|
28
28
|
:size="avatarIconFontSize"
|
|
29
29
|
:color="_isColmo ? 'rgba(255,255,255,0.80)' : '#1E2E37'"
|
|
30
|
+
@dofIconFontClicked="onClick"
|
|
30
31
|
></dof-iconfont>
|
|
31
32
|
</slot>
|
|
32
33
|
</div>
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
|
|
40
41
|
<!-- middle -->
|
|
41
42
|
<div
|
|
42
|
-
:class="['main-container', hasVerticalIndent && 'cell-indent', badgeNum && 'notDot']"
|
|
43
|
+
:class="['main-container', hasVerticalIndent && 'cell-indent', badgeNum && 'notDot', avatarIconFont && _isColmo && 'colmo-icon-indent']"
|
|
43
44
|
:style="subBorderStyleComp"
|
|
44
45
|
>
|
|
45
46
|
<slot name="label">
|
|
@@ -867,7 +868,7 @@ export default {
|
|
|
867
868
|
} else if (iconSize === 'min') {
|
|
868
869
|
return 24
|
|
869
870
|
} else {
|
|
870
|
-
return
|
|
871
|
+
return 76
|
|
871
872
|
}
|
|
872
873
|
},
|
|
873
874
|
rightTextStyleComp() {
|