@tarojs/components 4.1.11-beta.0 → 4.1.11-beta.1

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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/types/List.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/components",
3
- "version": "4.1.11-beta.0",
3
+ "version": "4.1.11-beta.1",
4
4
  "description": "Taro 组件库",
5
5
  "browser": "dist/index.js",
6
6
  "main:h5": "dist/index.js",
@@ -40,9 +40,9 @@
40
40
  "resolve-pathname": "^3.0.0",
41
41
  "swiper": "11.1.15",
42
42
  "tslib": "^2.6.2",
43
- "@tarojs/runtime": "4.1.11-beta.0",
44
- "@tarojs/shared": "4.1.11-beta.0",
45
- "@tarojs/taro": "4.1.11-beta.0"
43
+ "@tarojs/shared": "4.1.11-beta.1",
44
+ "@tarojs/taro": "4.1.11-beta.1",
45
+ "@tarojs/runtime": "4.1.11-beta.1"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@babel/generator": "^7.21.4",
@@ -68,7 +68,7 @@
68
68
  "jest-cli": "27.5.1",
69
69
  "jest-runner": "27.5.1",
70
70
  "jest-environment-node": "27.5.1",
71
- "@tarojs/helper": "4.1.11-beta.0"
71
+ "@tarojs/helper": "4.1.11-beta.1"
72
72
  },
73
73
  "peerDependenciesMeta": {
74
74
  "@types/react": {
package/types/List.d.ts CHANGED
@@ -25,12 +25,12 @@ interface ListProps
25
25
  * @default 50
26
26
  * @supported weapp, alipay, swan, tt, qq, jd, h5, rn, harmony_hybrid
27
27
  */
28
- upperThresholdCount?: number
28
+ upperThreshold?: number
29
29
  /** 距底部/右边多远时(单位px),触发 scrolltolower 事件
30
30
  * @default 50
31
31
  * @supported weapp, alipay, swan, tt, qq, jd, h5, rn, harmony_hybrid
32
32
  */
33
- lowerThresholdCount?: number
33
+ lowerThreshold?: number
34
34
  }
35
35
 
36
36
  declare const List: ComponentType<PropsWithChildren<ListProps>>