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
@@ -1,3 +1,5 @@
1
+ ## 3.3.25(2024-08-21)
2
+ fix: 修复slider在app-vue下样式问题
1
3
  ## 3.3.24(2024-08-19)
2
4
  fix: 修复时间选择器hasInput模式小程序不生效
3
5
 
@@ -414,6 +414,8 @@
414
414
 
415
415
  &-inner {
416
416
  flex: 1;
417
+ display: flex;
418
+ flex-direction: column;
417
419
  position: relative;
418
420
  border-radius: 999px;
419
421
  padding: 10px 18px;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "id": "uview-plus",
3
3
  "name": "uview-plus",
4
4
  "displayName": "零云®uview-plus3.0重磅发布,全面的Vue3移动组件库。",
5
- "version": "3.3.24",
5
+ "version": "3.3.25",
6
6
  "description": "零云®uview-plus已兼容vue3,全面的组件和便捷的工具会让您信手拈来,如鱼得水",
7
7
  "keywords": [
8
8
  "uview",
@@ -15,7 +15,7 @@ declare interface ButtonProps {
15
15
  * 按钮的大小
16
16
  * @default "normal"
17
17
  */
18
- size?: 'normal' | 'large' | 'mini'
18
+ size?: 'normal' | 'large' | 'small' | 'mini'
19
19
  /**
20
20
  * 按钮外观形状
21
21
  * @default "square"
@@ -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-load-more']: typeof import('./comps/loadMore')['LoadMore']
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