@bigbinary/neeto-commons-frontend 2.0.39 → 2.0.40

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/react-utils.d.ts CHANGED
@@ -115,7 +115,7 @@ export const DateFormat: {
115
115
 
116
116
  export const TimeFormat: typeof DateFormat;
117
117
 
118
- export interface ColumnsProps {
118
+ export const Columns: React.FC<{
119
119
  actionBlock?: React.ReactNode;
120
120
  checkboxProps?: CheckboxProps;
121
121
  columnData: {
@@ -131,7 +131,7 @@ export interface ColumnsProps {
131
131
  noColumnMessage?: string;
132
132
  onChange: (columns: any[]) => any[];
133
133
  searchProps?: InputProps;
134
- }
134
+ }>
135
135
 
136
136
  type ZustandConfigType = (
137
137
  set: (data: any) => void,
@@ -197,6 +197,7 @@ export const ShareViaLink: React.FC<{
197
197
  };
198
198
  entityName: string;
199
199
  handleRegenerate?: Function;
200
+ previewUrl?: string;
200
201
  socialMediaPostTitle: string;
201
202
  url: string;
202
203
  }>;