@arco-design/mobile-react 2.27.0 → 2.27.2

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 (50) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/README.en-US.md +2 -2
  3. package/README.md +2 -2
  4. package/cjs/_helpers/index.d.ts +1 -0
  5. package/cjs/_helpers/index.js +10 -0
  6. package/cjs/index-bar/index.js +7 -9
  7. package/cjs/index-bar/type.d.ts +3 -3
  8. package/cjs/load-more/index.js +4 -1
  9. package/cjs/nav-bar/index.js +2 -2
  10. package/cjs/show-monitor/index.js +112 -38
  11. package/cjs/swipe-load/demo/style/css/mobile.css +3 -0
  12. package/cjs/swipe-load/demo/style/mobile.less +11 -0
  13. package/cjs/swipe-load/index.js +86 -32
  14. package/cjs/swipe-load/style/css/index.css +3 -0
  15. package/cjs/swipe-load/style/index.less +7 -0
  16. package/cjs/swipe-load/type.d.ts +29 -0
  17. package/cjs/tabs/index.js +1 -0
  18. package/dist/index.js +393 -838
  19. package/dist/index.min.js +5 -5
  20. package/dist/style.css +3 -0
  21. package/dist/style.min.css +1 -1
  22. package/esm/_helpers/index.d.ts +1 -0
  23. package/esm/_helpers/index.js +7 -0
  24. package/esm/index-bar/index.js +1 -2
  25. package/esm/index-bar/type.d.ts +3 -3
  26. package/esm/load-more/index.js +4 -1
  27. package/esm/nav-bar/index.js +2 -2
  28. package/esm/show-monitor/index.js +112 -38
  29. package/esm/swipe-load/demo/style/css/mobile.css +3 -0
  30. package/esm/swipe-load/demo/style/mobile.less +11 -0
  31. package/esm/swipe-load/index.js +85 -32
  32. package/esm/swipe-load/style/css/index.css +3 -0
  33. package/esm/swipe-load/style/index.less +7 -0
  34. package/esm/swipe-load/type.d.ts +29 -0
  35. package/esm/tabs/index.js +1 -0
  36. package/package.json +3 -3
  37. package/umd/_helpers/index.d.ts +1 -0
  38. package/umd/_helpers/index.js +10 -0
  39. package/umd/index-bar/index.js +10 -10
  40. package/umd/index-bar/type.d.ts +3 -3
  41. package/umd/load-more/index.js +4 -1
  42. package/umd/nav-bar/index.js +2 -2
  43. package/umd/show-monitor/index.js +112 -38
  44. package/umd/swipe-load/demo/style/css/mobile.css +3 -0
  45. package/umd/swipe-load/demo/style/mobile.less +11 -0
  46. package/umd/swipe-load/index.js +88 -36
  47. package/umd/swipe-load/style/css/index.css +3 -0
  48. package/umd/swipe-load/style/index.less +7 -0
  49. package/umd/swipe-load/type.d.ts +29 -0
  50. package/umd/tabs/index.js +1 -0
@@ -4,14 +4,21 @@
4
4
  position: relative;
5
5
  display: inline-flex;
6
6
  width: 100%;
7
+
7
8
  .@{prefix}-list-area {
8
9
  position: relative;
9
10
  width: 100%;
11
+
12
+ &::-webkit-scrollbar {
13
+ display: none;
14
+ }
10
15
  }
16
+
11
17
  .@{prefix}-loading-area {
12
18
  .use-var(background-color, swipe-load-label-background);
13
19
  margin-top: 0;
14
20
  .use-var(border-radius, swipe-load-label-border-radius);
21
+
15
22
  .@{prefix}-loading-label {
16
23
  .use-var(margin-left, swipe-load-label-text-margin-left);
17
24
  .use-var(width, swipe-load-label-text-width);
@@ -77,6 +77,35 @@ export interface SwipeLoadProps {
77
77
  * @default_en "Release to view"
78
78
  */
79
79
  activeText?: string;
80
+ /**
81
+ * 触碰左侧边界时是否需要回弹效果
82
+ * @en Whether a bounce effect is required when touching the left boundary
83
+ * @default false
84
+ */
85
+ bounceWhenBumpBoundary?: boolean;
86
+ /**
87
+ * 当开启回弹效果时的阻尼系数
88
+ * @en Damping coefficient when the rebound effect is turned on
89
+ * @default 3
90
+ */
91
+ bounceDampRate?: number;
92
+ /**
93
+ * 当开启回弹效果时的动画毫秒时间
94
+ * @en Animation in milliseconds when the bounce effect is turned on
95
+ * @default 300
96
+ */
97
+ bounceAnimateDuration?: number;
98
+ /**
99
+ * 回弹效果开启时需要回弹的容器,默认为 getScrollContainer 返回的容器或容器的一个子元素
100
+ * @en The container that needs to be rebounded when the rebound effect is enabled, the default is the container returned by getScrollContainer or a child element of the container
101
+ */
102
+ getBounceContainer?: () => HTMLElement | null;
103
+ /**
104
+ * 当开启回弹效果时自定义手指滑动跟手的距离计算方式,dis表示touchmove的距离
105
+ * @en When the rebound effect is turned on, customize the calculation method of the distance between the finger sliding and the hand, and dis indicates the distance of touchmove
106
+ * @default (dis) => Math.min(dis, bounceScrollContainer.offsetWidth) / bounceDampRate
107
+ */
108
+ bounceDistanceProcessor?: (dis: number) => number;
80
109
  /**
81
110
  * 抛出外层touch事件,便于自定义,常用于阻止划动退出,切换tab等手势冲突
82
111
  * @en Throw the outer touchstart event, which is easy to customize. It is often used to prevent gesture conflicts such as swiping to exit, switching tabs, etc.
package/umd/tabs/index.js CHANGED
@@ -246,6 +246,7 @@
246
246
  // 利用受控手动更改index时,给cell line加上动画
247
247
  // @en Animate the cell line when changeing the index
248
248
  setCellTrans(true);
249
+ changeFromRef.current = 'manual';
249
250
  }, [activeTab]);
250
251
  (0, _helpers.useUpdateEffect)(function () {
251
252
  onDistanceChange && onDistanceChange(distance, wrapWidth, activeIndex);