dolphin-weex-ui 2.0.0 → 2.0.2
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 +15 -0
- package/dist/index.native.js +17 -15
- package/dist/index.native.js.map +1 -1
- package/dist/index.web.js +22 -19
- package/dist/index.web.js.map +1 -1
- package/package.json +1 -1
- package/packages/dof-cell/index.vue +126 -126
- package/packages/dof-refresher/index.vue +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# 升级日志
|
|
2
2
|
|
|
3
|
+
## 2.0.2
|
|
4
|
+
|
|
5
|
+
- [ ! ] 修复dof-cell disabled为true在iOS不置灰问题
|
|
6
|
+
- [ ! ] date: 2024/01/12
|
|
7
|
+
|
|
8
|
+
## 2.0.1
|
|
9
|
+
|
|
10
|
+
- [ ! ] 同步1.4.8代码
|
|
11
|
+
- [ ! ] date: 2024/01/12
|
|
12
|
+
|
|
13
|
+
## 1.4.8
|
|
14
|
+
|
|
15
|
+
- [ ! ] 修复dof-refresher下拉刷新组件js报错问题
|
|
16
|
+
- [ ! ] date: 2024/01/12
|
|
17
|
+
|
|
3
18
|
## 1.4.7
|
|
4
19
|
|
|
5
20
|
- [ ! ] 修复dof-bottom-bar按钮小三角背景闪动问题
|
package/dist/index.native.js
CHANGED
|
@@ -19475,20 +19475,20 @@ exports.default = {
|
|
|
19475
19475
|
|
|
19476
19476
|
if (iconSize === 'max') {
|
|
19477
19477
|
return {
|
|
19478
|
-
width: '
|
|
19479
|
-
height: '
|
|
19478
|
+
width: '112px',
|
|
19479
|
+
height: '112px',
|
|
19480
19480
|
borderRadius: '48px',
|
|
19481
|
-
marginTop: '
|
|
19482
|
-
marginBottom: '
|
|
19481
|
+
marginTop: '16px',
|
|
19482
|
+
marginBottom: '16px',
|
|
19483
19483
|
backgroundColor: iconColor ? iconColor : 'transparent'
|
|
19484
19484
|
};
|
|
19485
19485
|
} else if (iconSize === 'medium') {
|
|
19486
19486
|
return {
|
|
19487
|
-
width: '
|
|
19488
|
-
height: '
|
|
19487
|
+
width: '76px',
|
|
19488
|
+
height: '76px',
|
|
19489
19489
|
borderRadius: '32px',
|
|
19490
|
-
marginTop: '
|
|
19491
|
-
marginBottom: '
|
|
19490
|
+
marginTop: '40px',
|
|
19491
|
+
marginBottom: '40px',
|
|
19492
19492
|
backgroundColor: iconColor ? iconColor : 'transparent'
|
|
19493
19493
|
};
|
|
19494
19494
|
} else if (iconSize === 'min') {
|
|
@@ -31628,6 +31628,7 @@ exports.default = {
|
|
|
31628
31628
|
var _this2 = this;
|
|
31629
31629
|
|
|
31630
31630
|
setTimeout(function () {
|
|
31631
|
+
if (!_this2.$refs['cover2'] || !_this2.$refs['cover-cycle']) return;
|
|
31631
31632
|
// 降级版本取不到,需要注意
|
|
31632
31633
|
var scroller = _this2.$parent.$refs[_this2.scrollerRef].ref;
|
|
31633
31634
|
var cover2 = _this2.$refs['cover2'].ref;
|
|
@@ -31655,6 +31656,7 @@ exports.default = {
|
|
|
31655
31656
|
*/
|
|
31656
31657
|
cycleGoRound: function cycleGoRound() {
|
|
31657
31658
|
if (_utils2.default.env.isAndroid()) return;
|
|
31659
|
+
if (!this.$refs['cycle']) return;
|
|
31658
31660
|
var cycle = this.$refs['cycle'].ref;
|
|
31659
31661
|
this.arrowShow(false);
|
|
31660
31662
|
if (!cycle) {
|
|
@@ -41765,6 +41767,9 @@ module.exports = {
|
|
|
41765
41767
|
"flexDirection": "row",
|
|
41766
41768
|
"flex": 1
|
|
41767
41769
|
},
|
|
41770
|
+
"cell-wrapper": {
|
|
41771
|
+
"flex": 1
|
|
41772
|
+
},
|
|
41768
41773
|
"mgb-1": {
|
|
41769
41774
|
"marginBottom": "1"
|
|
41770
41775
|
},
|
|
@@ -47306,12 +47311,9 @@ module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c
|
|
|
47306
47311
|
class: ['wrapper', _vm.hasMargin && 'cell-margin'],
|
|
47307
47312
|
style: _vm.cellStyleComp
|
|
47308
47313
|
}, [_c('div', {
|
|
47309
|
-
class: [
|
|
47310
|
-
|
|
47311
|
-
|
|
47312
|
-
_vm.hackMrgb1pxcom && 'mgb-1',
|
|
47313
|
-
!_vm.disabled && _vm.isHighlight && 'dof-cell-highlight'
|
|
47314
|
-
],
|
|
47314
|
+
class: ['cell-wrapper', _vm.disabled ? 'cell-disabled-opacity' : 'cell-abled-opacity']
|
|
47315
|
+
}, [_c('div', {
|
|
47316
|
+
class: ['dof-cell', _vm.hackMrgb1pxcom && 'mgb-1', !_vm.disabled && _vm.isHighlight && 'dof-cell-highlight'],
|
|
47315
47317
|
style: _vm.borderStyleComp,
|
|
47316
47318
|
attrs: {
|
|
47317
47319
|
"accessible": _vm.autoAccessible,
|
|
@@ -47426,7 +47428,7 @@ module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c
|
|
|
47426
47428
|
on: {
|
|
47427
47429
|
"click": _vm.dofRightTipClicked
|
|
47428
47430
|
}
|
|
47429
|
-
}, [_vm._v(_vm._s(_vm.rightTip))])])], 2) : _vm._e()])], 2), (_vm.useFakeBorder) ? _c('div', {
|
|
47431
|
+
}, [_vm._v(_vm._s(_vm.rightTip))])])], 2) : _vm._e()])], 2)]), (_vm.useFakeBorder) ? _c('div', {
|
|
47430
47432
|
staticClass: ["fake-border"],
|
|
47431
47433
|
style: _vm.fakeBorderStyleRender
|
|
47432
47434
|
}) : _vm._e()])
|