dolphin-weex-bc 0.0.18 → 0.0.19

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
+ ## 0.0.19
4
+
5
+ - [ ! ] 修复节假日弹窗出现竖线问题
6
+ - [ ! ] date: 2025/12/08
7
+
3
8
  ## 0.0.18
4
9
 
5
10
  - [ ! ] 增加法定节假日弹窗组件
@@ -62889,6 +62889,9 @@ exports.default = {
62889
62889
  handler: function handler(val) {
62890
62890
  this.showModal = val;
62891
62891
  if (val) {
62892
+ this.visibleDays = [];
62893
+ this.holidays = [];
62894
+ this.workdays = [];
62892
62895
  this.getHolidays();
62893
62896
  }
62894
62897
  },
@@ -69945,7 +69948,8 @@ module.exports = {
69945
69948
  "calendar-container": {
69946
69949
  "backgroundColor": "#ffffff",
69947
69950
  "border": "1px solid #f3f4f5",
69948
- "borderRadius": "24"
69951
+ "borderRadius": "24",
69952
+ "overflow": "hidden"
69949
69953
  },
69950
69954
  "week-header": {
69951
69955
  "flexDirection": "row",