@tplc/business 0.3.64 → 0.3.65
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-filter-grid/lcb-filter-grid.vue +6 -0
- package/components/lcb-img-nav/lcb-img-nav.vue +2 -0
- package/components/lcb-img-nav/types.ts +1 -0
- package/package.json +1 -1
- package/types/components/lcb-img-nav/lcb-img-nav.vue.d.ts +3 -0
- package/types/components/lcb-img-nav/types.d.ts +1 -0
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.3.65](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.64...v0.3.65) (2025-02-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features | 新功能
|
|
9
|
+
|
|
10
|
+
* 字体颜色大小 ([2906705](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/2906705c1e8a789d599107ec832eff215baff90f))
|
|
11
|
+
|
|
5
12
|
### [0.3.64](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.63...v0.3.64) (2025-02-28)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -66,6 +66,12 @@ const handleClick = (index: number) => {
|
|
|
66
66
|
current.value = index === current.value ? -1 : index
|
|
67
67
|
try {
|
|
68
68
|
const params = JSON.parse(props.items?.[index]?.name)
|
|
69
|
+
if (index === current.value) {
|
|
70
|
+
Object.keys(params).forEach((key) => {
|
|
71
|
+
form!.value[key] = undefined
|
|
72
|
+
})
|
|
73
|
+
return
|
|
74
|
+
}
|
|
69
75
|
form!.value = {
|
|
70
76
|
...form!.value,
|
|
71
77
|
...params,
|
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
:style="{
|
|
72
72
|
fontSize: transformValueUnit(textSize),
|
|
73
73
|
color: textColor,
|
|
74
|
+
fontWeight: textFontWeight,
|
|
74
75
|
}"
|
|
75
76
|
>
|
|
76
77
|
{{ item[titleKey] }}
|
|
@@ -114,6 +115,7 @@ withDefaults(defineProps<LcbImgNavProps>(), {
|
|
|
114
115
|
itemFlexMode: 'column',
|
|
115
116
|
itemGap: 24,
|
|
116
117
|
titleBottom: 40,
|
|
118
|
+
textFontWeight: 400,
|
|
117
119
|
})
|
|
118
120
|
</script>
|
|
119
121
|
|
package/package.json
CHANGED
|
@@ -17,6 +17,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
17
17
|
itemFlexMode: string
|
|
18
18
|
itemGap: number
|
|
19
19
|
titleBottom: number
|
|
20
|
+
textFontWeight: number
|
|
20
21
|
}
|
|
21
22
|
>,
|
|
22
23
|
{},
|
|
@@ -49,6 +50,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
49
50
|
itemFlexMode: string
|
|
50
51
|
itemGap: number
|
|
51
52
|
titleBottom: number
|
|
53
|
+
textFontWeight: number
|
|
52
54
|
}
|
|
53
55
|
>
|
|
54
56
|
>
|
|
@@ -64,6 +66,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
64
66
|
pictureDistribution: 3 | 4 | 5
|
|
65
67
|
iconRadius: number
|
|
66
68
|
iconTextMargin: number
|
|
69
|
+
textFontWeight: number
|
|
67
70
|
textSize: number
|
|
68
71
|
urlKey: string
|
|
69
72
|
titleKey: string
|