dolphin-weex-ui 2.0.0-beta.21 → 2.0.0-beta.22

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 CHANGED
@@ -1,5 +1,10 @@
1
1
  # 升级日志
2
2
 
3
+ ## 1.4.7
4
+
5
+ - [ ! ] 修复dof-bottom-bar按钮小三角背景闪动问题
6
+ - [ ! ] date: 2024/01/02
7
+
3
8
  ## 1.4.5
4
9
 
5
10
  - [ ! ] 修复dof-progress边界显示兼容性问题,升级dolphin-native-bridge
@@ -17523,7 +17523,7 @@ exports.default = {
17523
17523
  },
17524
17524
 
17525
17525
  computed: {
17526
- _theme: function _theme() {
17526
+ theme_: function theme_() {
17527
17527
  if (this.theme) return this.theme;
17528
17528
  return this._isColmo ? 'colmo' : 'red';
17529
17529
  },
@@ -17567,12 +17567,12 @@ exports.default = {
17567
17567
  return t_class;
17568
17568
  },
17569
17569
  badgeStyle: function badgeStyle() {
17570
- var _theme = this._theme,
17570
+ var theme_ = this.theme_,
17571
17571
  themeList = this.themeList,
17572
17572
  color = this.color;
17573
17573
 
17574
17574
  return {
17575
- backgroundColor: color ? color : themeList[_theme]
17575
+ backgroundColor: color ? color : themeList[theme_]
17576
17576
  };
17577
17577
  }
17578
17578
  },
@@ -22614,7 +22614,7 @@ exports.default = {
22614
22614
  activeTextColor: {
22615
22615
  type: String,
22616
22616
  required: false,
22617
- default: '#ffffff'
22617
+ default: 'rgba(255, 255, 255, 0.8)'
22618
22618
  },
22619
22619
  // 常规边框颜色
22620
22620
  borderColor: {
@@ -24622,7 +24622,7 @@ exports.default = {
24622
24622
  type: Number
24623
24623
  },
24624
24624
  color: {
24625
- default: '#FFFFFF',
24625
+ default: 'rgba(255, 255, 255, 0.8)',
24626
24626
  type: String
24627
24627
  },
24628
24628
  iconStyle: {
@@ -35282,7 +35282,31 @@ Object.defineProperty(exports, "__esModule", {
35282
35282
 
35283
35283
  var _dom = __webpack_require__(10);
35284
35284
 
35285
+ var _colmo = __webpack_require__(0);
35286
+
35287
+ var _colmo2 = _interopRequireDefault(_colmo);
35288
+
35289
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
35290
+
35291
+ //
35292
+ //
35293
+ //
35294
+ //
35295
+ //
35296
+ //
35297
+ //
35298
+ //
35299
+ //
35300
+ //
35301
+ //
35302
+ //
35303
+ //
35304
+ //
35305
+ //
35306
+ //
35307
+
35285
35308
  exports.default = {
35309
+ mixins: [_colmo2.default],
35286
35310
  props: {
35287
35311
  value: {
35288
35312
  type: Number,
@@ -35357,21 +35381,7 @@ exports.default = {
35357
35381
  });
35358
35382
  }
35359
35383
  }
35360
- }; //
35361
- //
35362
- //
35363
- //
35364
- //
35365
- //
35366
- //
35367
- //
35368
- //
35369
- //
35370
- //
35371
- //
35372
- //
35373
- //
35374
- //
35384
+ };
35375
35385
 
35376
35386
  /***/ }),
35377
35387
  /* 384 */
@@ -41476,8 +41486,7 @@ module.exports = {
41476
41486
  "right": "7",
41477
41487
  "bottom": "7",
41478
41488
  "width": "20",
41479
- "height": "18",
41480
- "backgroundColor": "#267aff"
41489
+ "height": "18"
41481
41490
  },
41482
41491
  "icon-inner-container": {
41483
41492
  "height": "96",
@@ -43333,6 +43342,10 @@ module.exports = {
43333
43342
  },
43334
43343
  "dof-slider-scale--last": {
43335
43344
  "transform": "translate(50%, 0px)"
43345
+ },
43346
+ "colmoFont": {
43347
+ "fontFamily": "COLMO-Mono-Regular",
43348
+ "fontSize": "24"
43336
43349
  }
43337
43350
  }
43338
43351
 
@@ -44116,13 +44129,13 @@ module.exports = {
44116
44129
  },
44117
44130
  "borderRight": {
44118
44131
  "position": "absolute",
44119
- "width": "2",
44132
+ "width": "1",
44120
44133
  "backgroundColor": "#353639",
44121
44134
  "right": 0
44122
44135
  },
44123
44136
  "borderBottom": {
44124
44137
  "position": "absolute",
44125
- "height": "2",
44138
+ "height": "1",
44126
44139
  "backgroundColor": "#353639",
44127
44140
  "bottom": 0
44128
44141
  },
@@ -48752,7 +48765,8 @@ module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c
48752
48765
  'dof-slider-scale',
48753
48766
  !_vm.isFirst && !_vm.isLast && 'dof-slider-scale--mid',
48754
48767
  _vm.isFirst && "dof-slider-scale--first",
48755
- _vm.isLast && "dof-slider-scale--last"
48768
+ _vm.isLast && "dof-slider-scale--last",
48769
+ _vm._isColmo && "colmoFont"
48756
48770
  ],
48757
48771
  style: _vm.style
48758
48772
  }, [_vm._t("default")], 2)
@@ -49868,7 +49882,7 @@ module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c
49868
49882
  }
49869
49883
  }, [(_vm._isColmo) ? _c('dof-switch', {
49870
49884
  attrs: {
49871
- "checked": _vm.collapsed_
49885
+ "checked": !_vm.collapsed_
49872
49886
  },
49873
49887
  on: {
49874
49888
  "dofChange": _vm.onCollapse