@bigbinary/neeto-commons-frontend 2.0.12 → 2.0.14

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
@@ -47,9 +47,13 @@ type EmbedCode = React.FC<{
47
47
  primaryApp?: string;
48
48
  initialSelectedWidgets?: string[];
49
49
  }>;
50
-
51
50
  export const NeetoWidget: {
52
51
  EmbedCode: EmbedCode;
52
+ WIDGET_TYPES: {
53
+ changelog: "changelog";
54
+ chat: "chat";
55
+ replay: "replay";
56
+ };
53
57
  };
54
58
 
55
59
  type OptionsType = {
@@ -120,7 +124,12 @@ export const TimeFormat: typeof DateFormat;
120
124
  export interface ColumnsProps {
121
125
  actionBlock?: React.ReactNode;
122
126
  checkboxProps?: CheckboxProps;
123
- columnData: Object[];
127
+ columnData: {
128
+ title: string;
129
+ dataIndex: string;
130
+ key: string;
131
+ [key: string]: any;
132
+ }[];
124
133
  dropdownProps?: DropdownProps;
125
134
  fixedColumns?: string[];
126
135
  isSearchable?: boolean;