@nutui/nutui-react-taro 2.3.6-beta.0 → 2.3.6

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.
@@ -1,4 +1,4 @@
1
- import { F as FormItem } from "./formitem.taro-4ofczzxA.js";
1
+ import { F as FormItem } from "./formitem.taro-atY4A0pS.js";
2
2
  import "react";
3
3
  import "./cell.taro-jD6MoFTj.js";
4
4
  import "classnames";
@@ -185,8 +185,8 @@ const CalendarCard = React__default.forwardRef((props, ref) => {
185
185
  };
186
186
  const isActive = (day) => {
187
187
  if (type === "single" || type === "multiple") {
188
- for (const val of innerValue) {
189
- if (isSameDay(day, val)) {
188
+ for (const val in innerValue) {
189
+ if (isSameDay(day, innerValue[val])) {
190
190
  return true;
191
191
  }
192
192
  }