@tplc/business 0.3.83 → 0.3.85
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 +4 -0
- package/components/lcb-tabs/components/Tabs/index.vue +1 -0
- package/components/lcb-tabs/lcb-tabs.vue +3 -1
- package/components/lcb-tabs/types.ts +1 -0
- package/package.json +2 -2
- package/types/components/lcb-tabs/lcb-tabs.vue.d.ts +17 -3
- package/types/components/lcb-tabs/types.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
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.85](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.84...v0.3.85) (2025-03-18)
|
|
6
|
+
|
|
7
|
+
### [0.3.84](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.68...v0.3.84) (2025-03-18)
|
|
8
|
+
|
|
5
9
|
### [0.3.83](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.67...v0.3.83) (2025-03-18)
|
|
6
10
|
|
|
7
11
|
### [0.3.82](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.81...v0.3.82) (2025-03-14)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tplc/business",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.85",
|
|
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.68"
|
|
15
15
|
},
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">=18",
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { LcbTabsProps } from './types'
|
|
2
2
|
declare const _default: import('vue').DefineComponent<
|
|
3
|
-
__VLS_WithDefaults<
|
|
3
|
+
__VLS_WithDefaults<
|
|
4
|
+
__VLS_TypePropsToOption<LcbTabsProps>,
|
|
5
|
+
{
|
|
6
|
+
itemFontSize: number
|
|
7
|
+
}
|
|
8
|
+
>,
|
|
4
9
|
{},
|
|
5
10
|
unknown,
|
|
6
11
|
{},
|
|
@@ -11,9 +16,18 @@ declare const _default: import('vue').DefineComponent<
|
|
|
11
16
|
string,
|
|
12
17
|
import('vue').PublicProps,
|
|
13
18
|
Readonly<
|
|
14
|
-
import('vue').ExtractPropTypes<
|
|
19
|
+
import('vue').ExtractPropTypes<
|
|
20
|
+
__VLS_WithDefaults<
|
|
21
|
+
__VLS_TypePropsToOption<LcbTabsProps>,
|
|
22
|
+
{
|
|
23
|
+
itemFontSize: number
|
|
24
|
+
}
|
|
25
|
+
>
|
|
26
|
+
>
|
|
15
27
|
>,
|
|
16
|
-
{
|
|
28
|
+
{
|
|
29
|
+
itemFontSize: number
|
|
30
|
+
},
|
|
17
31
|
{}
|
|
18
32
|
>
|
|
19
33
|
export default _default
|