@tplc/business 0.3.83 → 0.3.84

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,8 @@
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.84](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.68...v0.3.84) (2025-03-18)
6
+
5
7
  ### [0.3.83](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.67...v0.3.83) (2025-03-18)
6
8
 
7
9
  ### [0.3.82](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.81...v0.3.82) (2025-03-14)
@@ -8,6 +8,7 @@
8
8
  :lineHeight="lineHeight"
9
9
  :slidable="slidable"
10
10
  :slidableNum="slidableNum"
11
+ :itemFontSize="itemFontSize"
11
12
  ref="tabs"
12
13
  >
13
14
  <wd-tab v-for="tab in items" :key="tab.name" :title="tab.title" :name="tab.name" />
@@ -16,7 +16,9 @@ defineOptions({
16
16
  styleIsolation: 'shared',
17
17
  },
18
18
  })
19
- withDefaults(defineProps<LcbTabsProps>(), {})
19
+ withDefaults(defineProps<LcbTabsProps>(), {
20
+ itemFontSize: 14,
21
+ })
20
22
  </script>
21
23
 
22
24
  <style lang="scss" scoped></style>
@@ -11,4 +11,5 @@ export interface LcbTabsProps extends LcbBlockProps {
11
11
  lineHeight?: number
12
12
  slidable?: 'always' | 'auto'
13
13
  slidableNum?: number
14
+ itemFontSize?: number
14
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.3.83",
3
+ "version": "0.3.84",
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.67"
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<__VLS_TypePropsToOption<LcbTabsProps>, {}>,
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<__VLS_WithDefaults<__VLS_TypePropsToOption<LcbTabsProps>, {}>>
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
@@ -10,4 +10,5 @@ export interface LcbTabsProps extends LcbBlockProps {
10
10
  lineHeight?: number
11
11
  slidable?: 'always' | 'auto'
12
12
  slidableNum?: number
13
+ itemFontSize?: number
13
14
  }