@nutui/nutui-react-taro 3.0.16 → 3.0.17-beta.0
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 +4 -5
- package/dist/cjs/packages/calendaritem/calendaritem.js +1 -1
- package/dist/cjs/packages/pulltorefresh/pulltorefresh.js +1 -1
- package/dist/cjs/types/spec/pulltorefresh/taro.d.ts +1 -0
- package/dist/es/packages/calendaritem/calendaritem.js +1 -1
- package/dist/es/packages/pulltorefresh/pulltorefresh.js +1 -1
- package/dist/es/types/spec/pulltorefresh/taro.d.ts +1 -0
- package/dist/nutui.react.umd.js +2 -2
- package/dist/style-jmapp.css +1 -1
- package/dist/style-jmapp.scss +28 -28
- package/dist/style-jrkf.css +1 -1
- package/dist/style-jrkf.scss +26 -26
- package/dist/style.css +1 -1
- package/dist/style.scss +25 -25
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
# v3.0.16
|
|
2
|
-
`2025-07-04`
|
|
3
|
-
|
|
4
2
|
|
|
5
|
-
|
|
6
|
-
* :bug: fix(swiper): 修改初始值时不生效问题 (#3293)
|
|
7
|
-
* :bug: fix(noticebar): children cannot update responsively in vertical mode (#3251)
|
|
3
|
+
`2025-07-04`
|
|
8
4
|
|
|
5
|
+
- :bug: fix(calendar): 类型修订 (#3292)
|
|
6
|
+
- :bug: fix(swiper): 修改初始值时不生效问题 (#3293)
|
|
7
|
+
- :bug: fix(noticebar): children cannot update responsively in vertical mode (#3251)
|
|
9
8
|
|
|
10
9
|
# v3.0.15
|
|
11
10
|
|
|
@@ -178,7 +178,7 @@ var PullToRefresh = function PullToRefresh(p) {
|
|
|
178
178
|
return /*#__PURE__*/ _react.default.createElement(_components.View, {
|
|
179
179
|
className: classes,
|
|
180
180
|
style: props.style,
|
|
181
|
-
catchMove:
|
|
181
|
+
catchMove: props.catchMove,
|
|
182
182
|
onTouchStart: handleTouchStart,
|
|
183
183
|
onTouchMove: handleTouchMove,
|
|
184
184
|
onTouchEnd: handleTouchEnd
|
|
@@ -166,7 +166,7 @@ export var PullToRefresh = function(p) {
|
|
|
166
166
|
return /*#__PURE__*/ React.createElement(View, {
|
|
167
167
|
className: classes,
|
|
168
168
|
style: props.style,
|
|
169
|
-
catchMove:
|
|
169
|
+
catchMove: props.catchMove,
|
|
170
170
|
onTouchStart: handleTouchStart,
|
|
171
171
|
onTouchMove: handleTouchMove,
|
|
172
172
|
onTouchEnd: handleTouchEnd
|
package/dist/nutui.react.umd.js
CHANGED
|
@@ -7418,7 +7418,7 @@
|
|
|
7418
7418
|
if (yearNum > 0) {
|
|
7419
7419
|
monthNum += 12 * yearNum;
|
|
7420
7420
|
}
|
|
7421
|
-
if (monthNum
|
|
7421
|
+
if (monthNum < 0) {
|
|
7422
7422
|
monthNum = 1;
|
|
7423
7423
|
}
|
|
7424
7424
|
setMonthsNum(monthNum);
|
|
@@ -16724,7 +16724,7 @@
|
|
|
16724
16724
|
return /* @__PURE__ */ React.createElement(components.View, {
|
|
16725
16725
|
className: classes,
|
|
16726
16726
|
style: props.style,
|
|
16727
|
-
catchMove:
|
|
16727
|
+
catchMove: props.catchMove,
|
|
16728
16728
|
onTouchStart: handleTouchStart,
|
|
16729
16729
|
onTouchMove: handleTouchMove,
|
|
16730
16730
|
onTouchEnd: handleTouchEnd
|