@tarojs/components 4.0.0-beta.58 → 4.0.0-beta.59

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/components",
3
- "version": "4.0.0-beta.58",
3
+ "version": "4.0.0-beta.59",
4
4
  "description": "Taro 组件库",
5
5
  "browser": "dist/index.js",
6
6
  "main:h5": "dist/index.js",
@@ -36,8 +36,8 @@
36
36
  "resolve-pathname": "^3.0.0",
37
37
  "tslib": "^2.6.2",
38
38
  "swiper": "6.8.0",
39
- "@tarojs/components-advanced": "4.0.0-beta.58",
40
- "@tarojs/taro": "4.0.0-beta.58"
39
+ "@tarojs/components-advanced": "4.0.0-beta.59",
40
+ "@tarojs/taro": "4.0.0-beta.59"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@babel/generator": "^7.21.4",
@@ -5,7 +5,7 @@ interface ListViewProps extends StandardProps {}
5
5
  /**
6
6
  * 列表布局容器,仅支持作为 scroll-view 自定义模式下的直接子节点或 sticky-section 组件直接子节点。仅 Skyline 支持。
7
7
  * @classification skyline
8
- * @supported weapp
8
+ * @supported weapp, harmony
9
9
  * @see https://developers.weixin.qq.com/miniprogram/dev/component/list-view.html
10
10
  */
11
11
  declare const ListView: ComponentType<ListViewProps>
@@ -134,7 +134,7 @@ interface ScrollViewProps extends StandardProps {
134
134
  /** 渲染模式
135
135
  * list - 列表模式。只会渲染在屏节点,会根据直接子节点是否在屏来按需渲染,若只有一个直接子节点则性能会退化
136
136
  * custom - 自定义模式。只会渲染在屏节点,子节点可以是 sticky-section list-view grid-view 等组件
137
- * @supported weapp
137
+ * @supported weapp, harmony
138
138
  * @default 'list'
139
139
  */
140
140
  type?: 'list' | 'custom'
@@ -5,7 +5,7 @@ interface StickyHeaderProps extends StandardProps {}
5
5
  /**
6
6
  * 吸顶布局容器,仅支持作为 scroll-view 自定义模式下的直接子节点或 sticky-section 组件直接子节点。仅 Skyline 支持。
7
7
  * @classification skyline
8
- * @supported weapp
8
+ * @supported weapp, harmony
9
9
  * @see https://developers.weixin.qq.com/miniprogram/dev/component/sticky-header.html
10
10
  */
11
11
  declare const StickyHeader: ComponentType<StickyHeaderProps>
@@ -10,7 +10,7 @@ interface StickySectionProps extends StandardProps {
10
10
  /**
11
11
  * 吸顶布局容器,仅支持作为 scroll-view 自定义模式下的直接子节点。仅 Skyline 支持。
12
12
  * @classification skyline
13
- * @supported weapp
13
+ * @supported weapp, harmony
14
14
  * @see https://developers.weixin.qq.com/miniprogram/dev/component/sticky-section.html
15
15
  */
16
16
  declare const StickySection: ComponentType<StickySectionProps>