dolphin-weex-ui 2.4.1 → 2.4.3
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 +20 -0
- package/dist/index.native.js +68 -23
- package/dist/index.native.js.map +1 -1
- package/dist/index.web.js +80 -32
- package/dist/index.web.js.map +1 -1
- package/package.json +1 -1
- package/packages/dof-actionsheet/index.vue +43 -7
- package/packages/dof-bottom-bar/diablo.css +3 -0
- package/packages/dof-card/style.js +3 -0
- package/packages/dof-checkbox/diablo.css +9 -2
- package/packages/dof-checkbox/index.vue +1 -0
- package/packages/dof-icon-button/index.vue +1 -1
- package/packages/dof-modal/index.vue +1 -1
- package/packages/dof-result/imgs.js +3 -3
- package/packages/dof-slider/index.vue +2 -2
- package/packages/dof-step-action/img.js +2 -2
- package/packages/dof-switch/index.vue +2 -2
- package/packages/dof-tab-page/index.vue +5 -4
|
@@ -172,7 +172,7 @@ export default {
|
|
|
172
172
|
} else {
|
|
173
173
|
res = {
|
|
174
174
|
'border-color': 'transparent',
|
|
175
|
-
'background-color': this._isDiablo ? '#
|
|
175
|
+
'background-color': this._isDiablo ? '#45494C' : '#d3d5d7'
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
178
|
// colmo
|
|
@@ -193,7 +193,7 @@ export default {
|
|
|
193
193
|
if ((this._isColmo && this.type === 'default') || this.type === 'colmo') dotColor = '#B35336'
|
|
194
194
|
if (this.dotColor) dotColor = this.dotColor
|
|
195
195
|
} else {
|
|
196
|
-
dotColor = this.type === 'white' ? '#ffffff' : this._isColmo ? '#8A8A8F' : '#ffffff'
|
|
196
|
+
dotColor = this.type === 'white' ? '#ffffff' : this._isColmo ? '#8A8A8F' : this._isDiablo ? '#DCDDDD' : '#ffffff'
|
|
197
197
|
}
|
|
198
198
|
|
|
199
199
|
return dotColor
|
|
@@ -336,10 +336,11 @@ export default {
|
|
|
336
336
|
}
|
|
337
337
|
},
|
|
338
338
|
hackMarginTop() {
|
|
339
|
-
const platform = weex.config.env.platform
|
|
340
|
-
if (platform === 'iOS') return -1
|
|
341
|
-
if (platform === 'harmony') return 0
|
|
342
|
-
return 2
|
|
339
|
+
// const platform = weex.config.env.platform
|
|
340
|
+
// if (platform === 'iOS') return -1
|
|
341
|
+
// if (platform === 'harmony') return 0
|
|
342
|
+
// return 2
|
|
343
|
+
return 0
|
|
343
344
|
},
|
|
344
345
|
textBtnStyle() {
|
|
345
346
|
const { theme } = this
|