@7shifts/sous-chef 3.5.0 → 3.6.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.
@@ -1,7 +1,9 @@
1
- import React from 'react';
1
+ import React, { ReactNode } from 'react';
2
2
  declare type Props = {
3
3
  children: React.ReactNode;
4
4
  columnIndex: number;
5
+ error?: ReactNode | string;
6
+ delayOnCloseError?: boolean;
5
7
  };
6
- declare const DataTableCell: ({ children, columnIndex }: Props) => JSX.Element;
8
+ declare const DataTableCell: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLInputElement>>;
7
9
  export default DataTableCell;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@7shifts/sous-chef",
3
- "version": "3.5.0",
3
+ "version": "3.6.0",
4
4
  "description": "7shifts component library",
5
5
  "author": "7shifts",
6
6
  "license": "MIT",