@tplc/business 0.7.18 → 0.7.19
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 +21 -0
- package/components/lcb-action-view/lcb-action-view.vue +9 -1
- package/components/lcb-action-view/types.ts +1 -1
- package/components/lcb-area/lcb-area.vue +4 -1
- package/components/lcb-button/lcb-button.vue +1 -0
- package/package.json +13 -13
- package/types/components/lcb-action-view/lcb-action-view.vue.d.ts +1 -0
- package/types/components/lcb-action-view/types.d.ts +1 -1
- package/types/components/lcb-search/lcb-search.vue.d.ts +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
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.19](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.7.16...v0.7.19) (2025-12-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### 🐛 Bug Fixes | Bug 修复
|
|
9
|
+
|
|
10
|
+
* 判断错误 ([fd0a01e](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/fd0a01e80f6da304104bfc6c80b194be4c2d38be))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### 🚀 Chore | 构建/工程依赖/工具
|
|
14
|
+
|
|
15
|
+
* **release:** 0.7.17 ([0ea0d3d](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/0ea0d3dfcd879dfcb305cd4a6bebbc35047c35db))
|
|
16
|
+
* **release:** 0.7.18 ([4d1b01d](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/4d1b01d826671e8fe00ff2807645c995654da817))
|
|
17
|
+
* **release:** 1.0.15 ([d452862](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/d45286238ac5605e828dec27e8b4752a7d8b837e))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### ✨ Features | 新功能
|
|
21
|
+
|
|
22
|
+
* area 支持接受list数据 ([5abec9c](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/5abec9c777a1bc503f1206378ec60bddf9090c52))
|
|
23
|
+
* fix back top ([d076291](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/d076291dbe5b50549575f5815ad7f14e6ffa57ae))
|
|
24
|
+
* 查看value 是否存在 ([5af5ab0](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/5af5ab0f3591395c8ae12dd9afff711f431d141b))
|
|
25
|
+
|
|
5
26
|
### [0.7.18](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.7.17...v0.7.18) (2025-12-16)
|
|
6
27
|
|
|
7
28
|
|
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<view
|
|
3
|
-
v-if="
|
|
3
|
+
v-if="renderMode === 'noClick'"
|
|
4
|
+
class="lcb-action-btn"
|
|
5
|
+
:class="customClass"
|
|
6
|
+
:style="customStyle"
|
|
7
|
+
>
|
|
8
|
+
<slot />
|
|
9
|
+
</view>
|
|
10
|
+
<view
|
|
11
|
+
v-else-if="renderMode === 'view'"
|
|
4
12
|
class="lcb-action-btn"
|
|
5
13
|
:class="customClass"
|
|
6
14
|
:style="customStyle"
|
package/package.json
CHANGED
|
@@ -1,17 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tplc/business",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.19",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"业务组件"
|
|
6
6
|
],
|
|
7
7
|
"type": "module",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"pub": "pnpm dts && pnpm publish --no-git-checks",
|
|
10
|
+
"dts": "rm -rf types && vue-tsc --project ./tsconfig.dts.json && pnpm prettier --write types",
|
|
11
|
+
"release-major": "standard-version --release-as major ",
|
|
12
|
+
"release-minor": "standard-version --release-as minor",
|
|
13
|
+
"release-patch": "standard-version --release-as patch ",
|
|
14
|
+
"generateComponent": "node ./scripts/createComponent.mjs",
|
|
15
|
+
"generateGlobalDts": "node ./scripts/generateGlobalDts.mjs"
|
|
16
|
+
},
|
|
8
17
|
"publishConfig": {
|
|
9
18
|
"access": "public",
|
|
10
19
|
"registry": "https://registry.npmjs.org/"
|
|
11
20
|
},
|
|
12
21
|
"peerDependencies": {
|
|
13
|
-
"
|
|
14
|
-
"
|
|
22
|
+
"@tplc/wot": "workspace:*",
|
|
23
|
+
"vue": ">=3.2.47"
|
|
15
24
|
},
|
|
16
25
|
"engines": {
|
|
17
26
|
"node": ">=18",
|
|
@@ -24,14 +33,5 @@
|
|
|
24
33
|
},
|
|
25
34
|
"devDependencies": {
|
|
26
35
|
"standard-version": "^9.5.0"
|
|
27
|
-
},
|
|
28
|
-
"scripts": {
|
|
29
|
-
"pub": "pnpm dts && pnpm publish --no-git-checks",
|
|
30
|
-
"dts": "rm -rf types && vue-tsc --project ./tsconfig.dts.json && pnpm prettier --write types",
|
|
31
|
-
"release-major": "standard-version --release-as major ",
|
|
32
|
-
"release-minor": "standard-version --release-as minor",
|
|
33
|
-
"release-patch": "standard-version --release-as patch ",
|
|
34
|
-
"generateComponent": "node ./scripts/createComponent.mjs",
|
|
35
|
-
"generateGlobalDts": "node ./scripts/generateGlobalDts.mjs"
|
|
36
36
|
}
|
|
37
|
-
}
|
|
37
|
+
}
|
|
@@ -72,7 +72,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
72
72
|
urlParams?: string
|
|
73
73
|
customClass?: string
|
|
74
74
|
customStyle?: import('vue').StyleValue
|
|
75
|
-
renderMode?: 'view' | 'button'
|
|
75
|
+
renderMode?: 'view' | 'button' | 'noClick'
|
|
76
76
|
autoJumpSecond?: number
|
|
77
77
|
position?: import('@tplc/wot/types/components/wd-popup/types').PopupType
|
|
78
78
|
jumpInterceptor?: (
|
|
@@ -179,7 +179,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
179
179
|
urlParams?: string
|
|
180
180
|
customClass?: string
|
|
181
181
|
customStyle?: import('vue').StyleValue
|
|
182
|
-
renderMode?: 'view' | 'button'
|
|
182
|
+
renderMode?: 'view' | 'button' | 'noClick'
|
|
183
183
|
autoJumpSecond?: number
|
|
184
184
|
position?: import('@tplc/wot/types/components/wd-popup/types').PopupType
|
|
185
185
|
jumpInterceptor?: (
|
|
@@ -265,7 +265,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
265
265
|
urlParams?: string
|
|
266
266
|
customClass?: string
|
|
267
267
|
customStyle?: import('vue').StyleValue
|
|
268
|
-
renderMode?: 'view' | 'button'
|
|
268
|
+
renderMode?: 'view' | 'button' | 'noClick'
|
|
269
269
|
autoJumpSecond?: number
|
|
270
270
|
position?: import('@tplc/wot/types/components/wd-popup/types').PopupType
|
|
271
271
|
jumpInterceptor?: (
|
|
@@ -351,7 +351,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
351
351
|
urlParams?: string
|
|
352
352
|
customClass?: string
|
|
353
353
|
customStyle?: import('vue').StyleValue
|
|
354
|
-
renderMode?: 'view' | 'button'
|
|
354
|
+
renderMode?: 'view' | 'button' | 'noClick'
|
|
355
355
|
autoJumpSecond?: number
|
|
356
356
|
position?: import('@tplc/wot/types/components/wd-popup/types').PopupType
|
|
357
357
|
jumpInterceptor?: (
|
|
@@ -436,7 +436,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
436
436
|
urlParams?: string
|
|
437
437
|
customClass?: string
|
|
438
438
|
customStyle?: import('vue').StyleValue
|
|
439
|
-
renderMode?: 'view' | 'button'
|
|
439
|
+
renderMode?: 'view' | 'button' | 'noClick'
|
|
440
440
|
autoJumpSecond?: number
|
|
441
441
|
position?: import('@tplc/wot/types/components/wd-popup/types').PopupType
|
|
442
442
|
jumpInterceptor?: (
|
|
@@ -527,7 +527,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
527
527
|
urlParams?: string
|
|
528
528
|
customClass?: string
|
|
529
529
|
customStyle?: import('vue').StyleValue
|
|
530
|
-
renderMode?: 'view' | 'button'
|
|
530
|
+
renderMode?: 'view' | 'button' | 'noClick'
|
|
531
531
|
autoJumpSecond?: number
|
|
532
532
|
position?: import('@tplc/wot/types/components/wd-popup/types').PopupType
|
|
533
533
|
jumpInterceptor?: (
|
|
@@ -612,7 +612,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
612
612
|
urlParams?: string
|
|
613
613
|
customClass?: string
|
|
614
614
|
customStyle?: import('vue').StyleValue
|
|
615
|
-
renderMode?: 'view' | 'button'
|
|
615
|
+
renderMode?: 'view' | 'button' | 'noClick'
|
|
616
616
|
autoJumpSecond?: number
|
|
617
617
|
position?: import('@tplc/wot/types/components/wd-popup/types').PopupType
|
|
618
618
|
jumpInterceptor?: (
|
|
@@ -697,7 +697,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
697
697
|
urlParams?: string
|
|
698
698
|
customClass?: string
|
|
699
699
|
customStyle?: import('vue').StyleValue
|
|
700
|
-
renderMode?: 'view' | 'button'
|
|
700
|
+
renderMode?: 'view' | 'button' | 'noClick'
|
|
701
701
|
autoJumpSecond?: number
|
|
702
702
|
position?: import('@tplc/wot/types/components/wd-popup/types').PopupType
|
|
703
703
|
jumpInterceptor?: (
|
|
@@ -786,7 +786,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
786
786
|
urlParams?: string
|
|
787
787
|
customClass?: string
|
|
788
788
|
customStyle?: import('vue').StyleValue
|
|
789
|
-
renderMode?: 'view' | 'button'
|
|
789
|
+
renderMode?: 'view' | 'button' | 'noClick'
|
|
790
790
|
autoJumpSecond?: number
|
|
791
791
|
position?: import('@tplc/wot/types/components/wd-popup/types').PopupType
|
|
792
792
|
jumpInterceptor?: (
|
|
@@ -872,7 +872,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
872
872
|
urlParams?: string
|
|
873
873
|
customClass?: string
|
|
874
874
|
customStyle?: import('vue').StyleValue
|
|
875
|
-
renderMode?: 'view' | 'button'
|
|
875
|
+
renderMode?: 'view' | 'button' | 'noClick'
|
|
876
876
|
autoJumpSecond?: number
|
|
877
877
|
position?: import('@tplc/wot/types/components/wd-popup/types').PopupType
|
|
878
878
|
jumpInterceptor?: (
|