@tplc/business 0.4.32 → 0.4.34
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 +14 -0
- package/components/lcb-list/components/TreeSelect/index.vue +2 -0
- package/components/lcb-nav/lcb-nav.vue +1 -1
- package/components/lcb-search/lcb-search.vue +6 -1
- package/components/lcb-search/types.ts +1 -0
- package/package.json +2 -2
- package/types/components/lcb-search/lcb-search.vue.d.ts +5 -0
- package/types/components/lcb-search/types.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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.4.34](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.33...v0.4.34) (2025-03-29)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features | 新功能
|
|
9
|
+
|
|
10
|
+
* 修改属性 ([e8ab53e](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/e8ab53eec1f85e74fe901f3971a557713bee5486))
|
|
11
|
+
|
|
12
|
+
### [0.4.33](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.76...v0.4.33) (2025-03-29)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug Fixes | Bug 修复
|
|
16
|
+
|
|
17
|
+
* ui ([9d087bb](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/9d087bb527f4f68b8146b7e6914c4633b3ff08e2))
|
|
18
|
+
|
|
5
19
|
### [0.4.32](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.29...v0.4.32) (2025-03-29)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -132,9 +132,11 @@ watch(
|
|
|
132
132
|
...((options.value.filter((v) => v.valueName).map((v) => v.valueName) as string[]) || []),
|
|
133
133
|
]
|
|
134
134
|
})
|
|
135
|
+
currentCategory.value = 0
|
|
135
136
|
},
|
|
136
137
|
{
|
|
137
138
|
immediate: true,
|
|
139
|
+
deep: true,
|
|
138
140
|
},
|
|
139
141
|
)
|
|
140
142
|
const onGridScroll = (e) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tplc/business",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.34",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"业务组件"
|
|
6
6
|
],
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"peerDependencies": {
|
|
13
13
|
"vue": ">=3.2.47",
|
|
14
|
-
"@tplc/wot": "0.1.
|
|
14
|
+
"@tplc/wot": "0.1.76"
|
|
15
15
|
},
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">=18",
|
|
@@ -64,6 +64,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
64
64
|
lineHeight?: number
|
|
65
65
|
historyKey?: string
|
|
66
66
|
initFocus?: boolean
|
|
67
|
+
blockBackground?: string
|
|
67
68
|
} & {
|
|
68
69
|
jumpUrl?: string
|
|
69
70
|
urlParams?: string
|
|
@@ -154,6 +155,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
154
155
|
lineHeight?: number
|
|
155
156
|
historyKey?: string
|
|
156
157
|
initFocus?: boolean
|
|
158
|
+
blockBackground?: string
|
|
157
159
|
} & {
|
|
158
160
|
jumpUrl?: string
|
|
159
161
|
urlParams?: string
|
|
@@ -222,6 +224,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
222
224
|
lineHeight?: number
|
|
223
225
|
historyKey?: string
|
|
224
226
|
initFocus?: boolean
|
|
227
|
+
blockBackground?: string
|
|
225
228
|
} & {
|
|
226
229
|
jumpUrl?: string
|
|
227
230
|
urlParams?: string
|
|
@@ -292,6 +295,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
292
295
|
lineHeight?: number
|
|
293
296
|
historyKey?: string
|
|
294
297
|
initFocus?: boolean
|
|
298
|
+
blockBackground?: string
|
|
295
299
|
} & {
|
|
296
300
|
jumpUrl?: string
|
|
297
301
|
urlParams?: string
|
|
@@ -357,6 +361,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
357
361
|
lineHeight?: number
|
|
358
362
|
historyKey?: string
|
|
359
363
|
initFocus?: boolean
|
|
364
|
+
blockBackground?: string
|
|
360
365
|
} & {
|
|
361
366
|
jumpUrl?: string
|
|
362
367
|
urlParams?: string
|