uview-plus 3.3.24 → 3.3.25
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
package/package.json
CHANGED
package/types/comps/button.d.ts
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { AllowedComponentProps, VNodeProps } from './_common'
|
|
2
|
+
|
|
3
|
+
declare interface SafeBottomProps {
|
|
4
|
+
/**
|
|
5
|
+
* 定义需要用到的外部样式
|
|
6
|
+
*/
|
|
7
|
+
customStyle?: unknown
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
declare interface _SafeBottom {
|
|
11
|
+
new (): {
|
|
12
|
+
$props: AllowedComponentProps & VNodeProps & SafeBottomProps
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export declare const SafeBottom: _SafeBottom
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { AllowedComponentProps, VNodeProps } from './_common'
|
|
2
|
+
|
|
3
|
+
declare interface StatusBarProps {
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* 背景色
|
|
7
|
+
*/
|
|
8
|
+
bgColor?: string
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* 定义需要用到的外部样式
|
|
12
|
+
*/
|
|
13
|
+
customStyle?: unknown
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
declare interface _StatusBar {
|
|
17
|
+
new (): {
|
|
18
|
+
$props: AllowedComponentProps & VNodeProps & StatusBarProps
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export declare const StatusBar: _StatusBar
|
package/types/comps.d.ts
CHANGED
|
@@ -86,13 +86,15 @@ declare module '@vue/runtime-core' {
|
|
|
86
86
|
// 其他组件
|
|
87
87
|
['up-parse']: typeof import('./comps/parse')['Parse']
|
|
88
88
|
['up-code-input']: typeof import('./comps/codeInput')['CodeInput']
|
|
89
|
-
['up-
|
|
89
|
+
['up-loadmore']: typeof import('./comps/loadMore')['LoadMore']
|
|
90
90
|
['up-read-more']: typeof import('./comps/readMore')['ReadMore']
|
|
91
91
|
['up-gap']: typeof import('./comps/gap')['Gap']
|
|
92
92
|
['up-avatar']: typeof import('./comps/avatar')['Avatar']
|
|
93
93
|
['up-avatar-group']: typeof import('./comps/avatarGroup')['AvatarGroup']
|
|
94
94
|
['up-link']: typeof import('./comps/link')['Link']
|
|
95
95
|
['up-transition']: typeof import('./comps/transition')['Transition']
|
|
96
|
+
['up-status-bar']: typeof import('./comps/statusBar')['StatusBar']
|
|
97
|
+
['up-safe-bottom']: typeof import('./comps/safeBottom')['SafeBottom']
|
|
96
98
|
}
|
|
97
99
|
}
|
|
98
100
|
|