@tplc/wot 0.1.77 → 0.1.78
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,13 @@
|
|
|
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.78](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.77...v0.1.78) (2025-04-07)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features | 新功能
|
|
9
|
+
|
|
10
|
+
* 调整版本 ([6a46a2c](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/6a46a2c1b359c1777d548658fa5fc87cbc1ce29a))
|
|
11
|
+
|
|
5
12
|
### [0.1.77](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.61...v0.1.77) (2025-04-07)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -64,6 +64,12 @@
|
|
|
64
64
|
color: #fff;
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
|
+
.wd-month__day-bottom,
|
|
68
|
+
.wd-month__day-top,
|
|
69
|
+
.wd-month__day-floor,
|
|
70
|
+
.wd-month__day-text {
|
|
71
|
+
color: #fff !important;
|
|
72
|
+
}
|
|
67
73
|
}
|
|
68
74
|
|
|
69
75
|
@include when(middle) {
|
|
@@ -96,6 +102,12 @@
|
|
|
96
102
|
.wd-month__day-text-custom {
|
|
97
103
|
color: #fff;
|
|
98
104
|
}
|
|
105
|
+
.wd-month__day-bottom,
|
|
106
|
+
.wd-month__day-top,
|
|
107
|
+
.wd-month__day-floor,
|
|
108
|
+
.wd-month__day-text {
|
|
109
|
+
color: #fff !important;
|
|
110
|
+
}
|
|
99
111
|
}
|
|
100
112
|
|
|
101
113
|
@include when(end) {
|
|
@@ -118,6 +130,12 @@
|
|
|
118
130
|
.wd-month__day-text-custom {
|
|
119
131
|
color: #fff;
|
|
120
132
|
}
|
|
133
|
+
.wd-month__day-bottom,
|
|
134
|
+
.wd-month__day-top,
|
|
135
|
+
.wd-month__day-floor,
|
|
136
|
+
.wd-month__day-text {
|
|
137
|
+
color: #fff !important;
|
|
138
|
+
}
|
|
121
139
|
}
|
|
122
140
|
|
|
123
141
|
@include when(same) {
|
|
@@ -55,7 +55,7 @@ const emit = defineEmits(['error', 'click', 'load'])
|
|
|
55
55
|
|
|
56
56
|
const rootStyle = computed(() => {
|
|
57
57
|
const style: Record<string, string | number> = {}
|
|
58
|
-
if (isDef(props.height)) {
|
|
58
|
+
if (isDef(props.height) && props.height !== 'auto') {
|
|
59
59
|
style.height = addUnit(props.height)
|
|
60
60
|
}
|
|
61
61
|
if (isDef(props.width)) {
|