@tplc/wot 0.1.69 → 0.1.71

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
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.1.71](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.90...v0.1.71) (2025-03-20)
6
+
7
+ ### [0.1.70](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.86...v0.1.70) (2025-03-19)
8
+
9
+
10
+ ### ✨ Features | 新功能
11
+
12
+ * 发布新版 ([44f0f9b](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/44f0f9b524e9c8dea2a1092c651efb1bb7988dbd))
13
+ * 地图防抖 ([6e3aa28](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/6e3aa28dc9fb36663553f02f8db2d12720d4a73e))
14
+
5
15
  ### [0.1.69](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.85...v0.1.69) (2025-03-18)
6
16
 
7
17
 
@@ -733,7 +733,7 @@ $-col-picker-list-color-checked: var(
733
733
  $-color-theme
734
734
  ) !default; // 弹框列表选中选项颜色
735
735
  /* overlay */
736
- $-overlay-bg: var(--wot-overlay-bg, rgba(0, 0, 0, 0.65)) !default;
736
+ $-overlay-bg: var(--wot-overlay-bg, rgba(0, 0, 0, 0.25)) !default;
737
737
  $-overlay-bg-dark: var(--wot-overlay-bg-dark, rgba(0, 0, 0, 0.75)) !default;
738
738
  /* popup */
739
739
  $-popup-close-size: var(--wot-popup-close-size, 20px) !default; // 关闭按钮尺寸
@@ -13,10 +13,20 @@
13
13
  @click="handleDateClick(index)"
14
14
  >
15
15
  <view class="wd-month__day-container">
16
- <view class="wd-month__day-top">{{ item.topInfo }}</view>
16
+ <view
17
+ class="wd-month__day-top"
18
+ :class="{
19
+ 'text-price': item.restFlag,
20
+ }"
21
+ >
22
+ {{ item.topInfo }}
23
+ </view>
17
24
  <view
18
25
  class="wd-month__day-text"
19
- :class="{ 'wd-month__day-text-custom': item.text !== item.day }"
26
+ :class="{
27
+ 'wd-month__day-text-custom': item.text !== item.day,
28
+ 'text-price': item.restFlag,
29
+ }"
20
30
  >
21
31
  {{ item.text }}
22
32
  </view>
@@ -101,6 +101,7 @@ export type CalendarDayType = '' | 'start' | 'middle' | 'end' | 'selected' | 'sa
101
101
  export type CalendarDayItem = {
102
102
  date: number
103
103
  text?: number | string
104
+ restFlag?: boolean
104
105
  topInfo?: string
105
106
  bottomInfo?: string
106
107
  floorText?: string
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "@tplc/wot",
3
3
  "name": "@tplc/wot",
4
- "version": "0.1.69",
4
+ "version": "0.1.71",
5
5
  "keywords": [
6
6
  "wot-design-uni",
7
7
  "国际化",
@@ -114,6 +114,7 @@ export type CalendarDayType = '' | 'start' | 'middle' | 'end' | 'selected' | 'sa
114
114
  export type CalendarDayItem = {
115
115
  date: number
116
116
  text?: number | string
117
+ restFlag?: boolean
117
118
  topInfo?: string
118
119
  bottomInfo?: string
119
120
  floorText?: string