@tplc/wot 0.1.16 → 0.1.18
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/common/abstracts/variable.scss +2 -2
- package/components/wd-gap/index.scss +4 -0
- package/components/wd-gap/types.ts +4 -0
- package/components/wd-gap/wd-gap.vue +1 -1
- package/components/wd-popup/index.scss +1 -1
- package/components/wd-popup/wd-popup.vue +1 -1
- package/components/wd-sticky/wd-sticky.vue +5 -0
- package/components/wd-tabs/index.scss +0 -1
- package/package.json +1 -1
- package/types/components/wd-gap/types.d.ts +7 -0
- package/types/components/wd-gap/wd-gap.vue.d.ts +9 -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.1.18](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.0.42...v0.1.18) (2024-10-25)
|
|
6
|
+
|
|
7
|
+
### [0.1.17](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.0.37...v0.1.17) (2024-10-21)
|
|
8
|
+
|
|
5
9
|
### [0.1.16](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.0.30...v0.1.16) (2024-10-19)
|
|
6
10
|
|
|
7
11
|
### [0.1.15](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.0.29...v0.1.15) (2024-10-19)
|
|
@@ -542,8 +542,8 @@ $-col-picker-list-color-checked: var(--wot-col-picker-list-color-checked,
|
|
|
542
542
|
$-overlay-bg: var(--wot-overlay-bg, rgba(0, 0, 0, 0.65)) !default;
|
|
543
543
|
$-overlay-bg-dark: var(--wot-overlay-bg-dark, rgba(0, 0, 0, 0.75)) !default;
|
|
544
544
|
/* popup */
|
|
545
|
-
$-popup-close-size: var(--wot-popup-close-size,
|
|
546
|
-
$-popup-close-color: var(--wot-popup-close-color, #
|
|
545
|
+
$-popup-close-size: var(--wot-popup-close-size, 20px) !default; // 关闭按钮尺寸
|
|
546
|
+
$-popup-close-color: var(--wot-popup-close-color, #999) !default; // 关闭按钮颜色
|
|
547
547
|
/* progress */
|
|
548
548
|
$-progress-padding: var(--wot-progress-padding, 9px 0 8px) !default; // 进度条内边距
|
|
549
549
|
$-progress-bg: var(--wot-progress-bg, rgba(229, 229, 229, 1)) !default; // 进度条底色
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
@transitionend="onTransitionEnd"
|
|
17
17
|
>
|
|
18
18
|
<slot />
|
|
19
|
-
<wd-icon v-if="closable" custom-class="wd-popup__close" name="
|
|
19
|
+
<wd-icon v-if="closable" custom-class="wd-popup__close" name="close-circle" @click="close" />
|
|
20
20
|
</view>
|
|
21
21
|
</template>
|
|
22
22
|
|
package/package.json
CHANGED
|
@@ -20,6 +20,13 @@ export declare const gapProps: {
|
|
|
20
20
|
type: (NumberConstructor | StringConstructor)[]
|
|
21
21
|
default: number
|
|
22
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
* 是否开启顶部安全区
|
|
25
|
+
*/
|
|
26
|
+
safeAreaTop: {
|
|
27
|
+
type: BooleanConstructor
|
|
28
|
+
default: boolean
|
|
29
|
+
}
|
|
23
30
|
customStyle: {
|
|
24
31
|
type: import('vue').PropType<string>
|
|
25
32
|
default: string
|
|
@@ -12,6 +12,10 @@ declare const _default: import('vue').DefineComponent<
|
|
|
12
12
|
type: (NumberConstructor | StringConstructor)[]
|
|
13
13
|
default: number
|
|
14
14
|
}
|
|
15
|
+
safeAreaTop: {
|
|
16
|
+
type: BooleanConstructor
|
|
17
|
+
default: boolean
|
|
18
|
+
}
|
|
15
19
|
customStyle: {
|
|
16
20
|
type: import('vue').PropType<string>
|
|
17
21
|
default: string
|
|
@@ -44,6 +48,10 @@ declare const _default: import('vue').DefineComponent<
|
|
|
44
48
|
type: (NumberConstructor | StringConstructor)[]
|
|
45
49
|
default: number
|
|
46
50
|
}
|
|
51
|
+
safeAreaTop: {
|
|
52
|
+
type: BooleanConstructor
|
|
53
|
+
default: boolean
|
|
54
|
+
}
|
|
47
55
|
customStyle: {
|
|
48
56
|
type: import('vue').PropType<string>
|
|
49
57
|
default: string
|
|
@@ -60,6 +68,7 @@ declare const _default: import('vue').DefineComponent<
|
|
|
60
68
|
bgColor: string
|
|
61
69
|
height: string | number
|
|
62
70
|
safeAreaBottom: boolean
|
|
71
|
+
safeAreaTop: boolean
|
|
63
72
|
},
|
|
64
73
|
{}
|
|
65
74
|
>
|