@tplc/wot 0.1.65 → 0.1.67
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 +11 -0
- package/components/wd-calendar-view/month/index.scss +18 -9
- package/components/wd-calendar-view/month/month.vue +18 -1
- package/components/wd-calendar-view/types.ts +1 -0
- package/components/wd-swiper/wd-swiper.vue +1 -1
- package/package.json +1 -1
- package/types/components/wd-calendar-view/types.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
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.67](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.82...v0.1.67) (2025-03-18)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features | 新功能
|
|
9
|
+
|
|
10
|
+
* 新增form ([1fc2c38](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/1fc2c38de7d1bb0cfcb420a9f80c1a2f309ffd49))
|
|
11
|
+
* 新增类型属性 ([044fa99](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/044fa99ff2b1a18c4cb01185a7f30003862577a3))
|
|
12
|
+
* 暂时提交form ([a43ce7c](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/a43ce7c0152fda887a2695cf88cb79cd31c75f94))
|
|
13
|
+
|
|
14
|
+
### [0.1.66](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.77...v0.1.66) (2025-03-11)
|
|
15
|
+
|
|
5
16
|
### [0.1.65](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.64...v0.1.65) (2025-03-10)
|
|
6
17
|
|
|
7
18
|
### [0.1.64](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.75...v0.1.64) (2025-03-10)
|
|
@@ -90,8 +90,8 @@
|
|
|
90
90
|
background: $-calendar-active-color;
|
|
91
91
|
border-radius: $-calendar-active-border;
|
|
92
92
|
}
|
|
93
|
-
.wd-month__day-text-custom{
|
|
94
|
-
color
|
|
93
|
+
.wd-month__day-text-custom {
|
|
94
|
+
color: #fff;
|
|
95
95
|
}
|
|
96
96
|
}
|
|
97
97
|
|
|
@@ -112,8 +112,8 @@
|
|
|
112
112
|
background: $-calendar-active-color;
|
|
113
113
|
border-radius: $-calendar-active-border;
|
|
114
114
|
}
|
|
115
|
-
.wd-month__day-text-custom{
|
|
116
|
-
color
|
|
115
|
+
.wd-month__day-text-custom {
|
|
116
|
+
color: #fff;
|
|
117
117
|
}
|
|
118
118
|
}
|
|
119
119
|
|
|
@@ -131,15 +131,14 @@
|
|
|
131
131
|
z-index: 2;
|
|
132
132
|
height: 100%;
|
|
133
133
|
padding: 0 2px;
|
|
134
|
-
|
|
135
134
|
}
|
|
136
135
|
|
|
137
136
|
@include e(day-text) {
|
|
138
137
|
font-weight: $-calendar-day-fw;
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
138
|
+
&-custom {
|
|
139
|
+
font-size: 14px;
|
|
140
|
+
color: $-calendar-active-color;
|
|
141
|
+
}
|
|
143
142
|
}
|
|
144
143
|
|
|
145
144
|
@include e(day-top) {
|
|
@@ -161,4 +160,14 @@
|
|
|
161
160
|
line-height: 1.1;
|
|
162
161
|
text-align: center;
|
|
163
162
|
}
|
|
163
|
+
|
|
164
|
+
@include e(day-floor) {
|
|
165
|
+
position: absolute;
|
|
166
|
+
right: 0;
|
|
167
|
+
bottom: 2px;
|
|
168
|
+
left: 0;
|
|
169
|
+
font-size: $-calendar-info-fs;
|
|
170
|
+
line-height: 1.1;
|
|
171
|
+
text-align: center;
|
|
172
|
+
}
|
|
164
173
|
}
|
|
@@ -20,7 +20,24 @@
|
|
|
20
20
|
>
|
|
21
21
|
{{ item.text }}
|
|
22
22
|
</view>
|
|
23
|
-
<view
|
|
23
|
+
<view
|
|
24
|
+
class="wd-month__day-bottom"
|
|
25
|
+
:style="{ bottom: item.floorText ? '12px' : '6px' }"
|
|
26
|
+
>
|
|
27
|
+
<text
|
|
28
|
+
v-if="item.bottomInfo && item.bottomInfo.includes('¥')"
|
|
29
|
+
style="font-size: 8px"
|
|
30
|
+
>
|
|
31
|
+
¥
|
|
32
|
+
</text>
|
|
33
|
+
<text>{{ item.bottomInfo?.replace('¥', '') }}</text>
|
|
34
|
+
</view>
|
|
35
|
+
<view class="wd-month__day-floor">
|
|
36
|
+
<text v-if="item.floorText && item.floorText.includes('¥')" style="font-size: 8px">
|
|
37
|
+
¥
|
|
38
|
+
</text>
|
|
39
|
+
{{ item.floorText?.replace('¥', '') }}
|
|
40
|
+
</view>
|
|
24
41
|
</view>
|
|
25
42
|
</view>
|
|
26
43
|
</view>
|
package/package.json
CHANGED