dolphin-weex-ui 2.4.26 → 2.4.28
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 +2 -2
- package/dist/index.native.js.map +1 -1
- package/dist/index.web.js +4 -4
- 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 +2 -2
package/package.json
CHANGED
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
|
|
41
41
|
<!-- middle -->
|
|
42
42
|
<div
|
|
43
|
-
:class="['main-container', hasVerticalIndent && 'cell-indent', badgeNum && 'notDot']"
|
|
43
|
+
:class="['main-container', hasVerticalIndent && 'cell-indent', badgeNum && 'notDot', avatarIconFont && _isColmo && 'colmo-icon-indent']"
|
|
44
44
|
:style="subBorderStyleComp"
|
|
45
45
|
>
|
|
46
46
|
<slot name="label">
|
|
@@ -868,7 +868,7 @@ export default {
|
|
|
868
868
|
} else if (iconSize === 'min') {
|
|
869
869
|
return 24
|
|
870
870
|
} else {
|
|
871
|
-
return
|
|
871
|
+
return 72
|
|
872
872
|
}
|
|
873
873
|
},
|
|
874
874
|
rightTextStyleComp() {
|