@tplc/business 0.7.50 → 0.7.51
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 +7 -0
- package/components/lcb-area/lcb-area.vue +1 -1
- package/package.json +1 -1
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.7.51](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.7.50...v0.7.51) (2026-01-06)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features | 新功能
|
|
9
|
+
|
|
10
|
+
* **lcb-block:** add styleKey to dynamic options and update style handling for improved flexibility ([014469d](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/014469da25766f682cff0d63a932b82504f41d7d))
|
|
11
|
+
|
|
5
12
|
### [0.7.50](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.7.49...v0.7.50) (2026-01-06)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -153,7 +153,7 @@ watch(
|
|
|
153
153
|
)
|
|
154
154
|
|
|
155
155
|
// 优化: 提取比较逻辑,减少重复代码
|
|
156
|
-
const compareValues = (value
|
|
156
|
+
const compareValues = (value = '', compareValue: string, compareType: string) => {
|
|
157
157
|
switch (compareType) {
|
|
158
158
|
case '=':
|
|
159
159
|
return `${value}` === compareValue
|