@bigbinary/neeto-molecules 3.16.69 → 3.16.71

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": "@bigbinary/neeto-molecules",
3
- "version": "3.16.69",
3
+ "version": "3.16.71",
4
4
  "description": "A package of reusable molecular components for neeto products.",
5
5
  "repository": "git@github.com:bigbinary/neeto-molecules.git",
6
6
  "author": "Amaljith K <amaljith.k@bigbinary.com>",
@@ -137,12 +137,14 @@ declare const BoardView: React.FC<{
137
137
  onMoveSection?: (source: SectionArgs, destination: SectionArgs) => void;
138
138
  onMoveItem?: (source: ItemArgs, destination: ItemArgs) => void;
139
139
  className?: string;
140
+ isDragAndDropDisabled?: boolean;
140
141
  }> & {
141
142
  Section: React.FC<{
142
143
  ref?: React.Ref<HTMLDivElement>;
143
144
  section: SectionData;
144
145
  items: ItemData[];
145
146
  renderItem: (args: ItemArgs) => React.ReactNode;
147
+ isDragAndDropDisabled?: boolean;
146
148
  }>;
147
149
  };
148
150