dolphin-weex-ui 2.0.3 → 2.0.5
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 +31 -21
- package/dist/index.native.js.map +1 -1
- package/dist/index.web.js +30 -19
- package/dist/index.web.js.map +1 -1
- package/package.json +1 -1
- package/packages/dof-button/index.vue +1 -1
- package/packages/dof-button/type.js +1 -1
- package/packages/dof-popup/index.vue +22 -14
- package/packages/dof-switch/index.vue +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# 升级日志
|
|
2
2
|
|
|
3
|
+
## 2.0.5
|
|
4
|
+
|
|
5
|
+
- [ ! ] 优化UI走查包括dof-popup,dof-button组件渲染抖动的问题
|
|
6
|
+
- [ ! ] date: 2024/01/22
|
|
7
|
+
|
|
8
|
+
## 2.0.4
|
|
9
|
+
|
|
10
|
+
- [ ! ] 优化UI走查包括dof-button,dof-popup,dof-switch组件的相关样式优化问题
|
|
11
|
+
- [ ! ] date: 2024/01/15
|
|
12
|
+
|
|
3
13
|
## 2.0.3
|
|
4
14
|
|
|
5
15
|
- [ ! ] 兼容老版本一键换肤工具
|
|
@@ -14,6 +24,11 @@
|
|
|
14
24
|
|
|
15
25
|
- [ ! ] 同步1.4.8代码
|
|
16
26
|
|
|
27
|
+
## 1.5.0
|
|
28
|
+
|
|
29
|
+
- [ ! ] 修复dof-button渲染抖动问题
|
|
30
|
+
- [ ! ] date: 2024/01/22
|
|
31
|
+
|
|
17
32
|
## 1.4.9
|
|
18
33
|
|
|
19
34
|
- [ ! ] 修复dof-cell disabled为true时ios不置灰问题
|
package/dist/index.native.js
CHANGED
|
@@ -8111,7 +8111,7 @@ var COLMO_BUTTON_STYLE_MAP = exports.COLMO_BUTTON_STYLE_MAP = {
|
|
|
8111
8111
|
small: {
|
|
8112
8112
|
width: '128px',
|
|
8113
8113
|
height: '56px',
|
|
8114
|
-
borderRadius: '
|
|
8114
|
+
borderRadius: '28px',
|
|
8115
8115
|
paddingLeft: '0px',
|
|
8116
8116
|
paddingRight: '0px'
|
|
8117
8117
|
}
|
|
@@ -30275,6 +30275,11 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
|
|
|
30275
30275
|
//
|
|
30276
30276
|
//
|
|
30277
30277
|
//
|
|
30278
|
+
//
|
|
30279
|
+
//
|
|
30280
|
+
//
|
|
30281
|
+
//
|
|
30282
|
+
//
|
|
30278
30283
|
|
|
30279
30284
|
var animation = weex.requireModule('animation');
|
|
30280
30285
|
var platform = weex.config.env.platform;
|
|
@@ -30438,22 +30443,27 @@ exports.default = {
|
|
|
30438
30443
|
|
|
30439
30444
|
setTimeout(function () {
|
|
30440
30445
|
val && _this.appearPopup(val);
|
|
30441
|
-
},
|
|
30446
|
+
}, 100);
|
|
30442
30447
|
},
|
|
30443
|
-
show: function show(val) {
|
|
30444
|
-
var _this2 = this;
|
|
30445
30448
|
|
|
30446
|
-
|
|
30447
|
-
|
|
30448
|
-
|
|
30449
|
-
|
|
30450
|
-
|
|
30451
|
-
|
|
30452
|
-
|
|
30453
|
-
|
|
30454
|
-
|
|
30455
|
-
}
|
|
30456
|
-
|
|
30449
|
+
show: {
|
|
30450
|
+
handler: function handler(val) {
|
|
30451
|
+
var _this2 = this;
|
|
30452
|
+
|
|
30453
|
+
this.overlayShow = val;
|
|
30454
|
+
if (val) {
|
|
30455
|
+
setTimeout(function () {
|
|
30456
|
+
_this2.show_ = true;
|
|
30457
|
+
}, 80);
|
|
30458
|
+
} else {
|
|
30459
|
+
this.appearPopup(false);
|
|
30460
|
+
setTimeout(function () {
|
|
30461
|
+
_this2.show_ = false;
|
|
30462
|
+
}, this.overlayCfg.duration || 300);
|
|
30463
|
+
}
|
|
30464
|
+
},
|
|
30465
|
+
|
|
30466
|
+
immediate: true
|
|
30457
30467
|
}
|
|
30458
30468
|
},
|
|
30459
30469
|
mounted: function mounted() {
|
|
@@ -44377,11 +44387,11 @@ module.exports = {
|
|
|
44377
44387
|
"justifyContent": "center"
|
|
44378
44388
|
},
|
|
44379
44389
|
"dof-switch-loading": {
|
|
44380
|
-
"width": "
|
|
44381
|
-
"height": "
|
|
44390
|
+
"width": "48",
|
|
44391
|
+
"height": "48",
|
|
44382
44392
|
"position": "absolute",
|
|
44383
44393
|
"left": "32",
|
|
44384
|
-
"top": "
|
|
44394
|
+
"top": "0"
|
|
44385
44395
|
},
|
|
44386
44396
|
"switch": {
|
|
44387
44397
|
"width": "96",
|
|
@@ -45388,8 +45398,7 @@ module.exports = {
|
|
|
45388
45398
|
"btn-text": {
|
|
45389
45399
|
"fontFamily": "PingFangSC-Medium",
|
|
45390
45400
|
"textOverflow": "ellipsis",
|
|
45391
|
-
"lines": 1
|
|
45392
|
-
"color": "#ffffff"
|
|
45401
|
+
"lines": 1
|
|
45393
45402
|
},
|
|
45394
45403
|
"dof-text-highlight-primary": {
|
|
45395
45404
|
"color:active": "#5b69e6"
|
|
@@ -49002,7 +49011,8 @@ module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c
|
|
|
49002
49011
|
}, [_vm._v(_vm._s(btn.hasOwnProperty('text') ? btn.text : btn))])
|
|
49003
49012
|
})) : _vm._e(), _c('div', {
|
|
49004
49013
|
style: {
|
|
49005
|
-
height: _vm.show && _vm.isipx ? '68px' : '0px'
|
|
49014
|
+
height: _vm.show && _vm.isipx ? '68px' : '0px',
|
|
49015
|
+
backgroundColor: _vm._isColmo ? '#151617' : _vm.padStyle.backgroundColor
|
|
49006
49016
|
}
|
|
49007
49017
|
})], 2) : _vm._e()])
|
|
49008
49018
|
},staticRenderFns: []}
|