@factorialco/f0-react 1.197.0 → 1.198.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.
@@ -2572,7 +2572,10 @@ declare type KanbanVisualizationOptions<Record extends RecordType, _Filters exte
2572
2572
  icon: IconType;
2573
2573
  property: CardMetadataProperty;
2574
2574
  }>;
2575
- onMove?: (fromLaneId: string, toLaneId: string, sourceId: string, toIndex: number | null) => Promise<void>;
2575
+ onMove?: (fromLaneId: string, toLaneId: string, sourceRecord: Record, destinyRecord: {
2576
+ record: Record;
2577
+ position: "above" | "below";
2578
+ }) => Promise<void>;
2576
2579
  };
2577
2580
 
2578
2581
  /**