@apexcura/ui-components 0.0.16-Beta521 → 0.0.16-Beta524

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.
@@ -105,6 +105,22 @@ export type ElementType = {
105
105
  value: string;
106
106
  }[];
107
107
  }[];
108
+ childHead?: {
109
+ _id?: string;
110
+ name?: string;
111
+ label?: string;
112
+ visible?: boolean;
113
+ required?: boolean;
114
+ key?: string;
115
+ render?: (text: string) => React.JSX.Element;
116
+ ellipsis?: boolean;
117
+ sortable?: boolean;
118
+ filtered?: boolean;
119
+ filters?: {
120
+ text: string;
121
+ value: string;
122
+ }[];
123
+ }[];
108
124
  tbody?: ChildRecordType[];
109
125
  optionType?: string;
110
126
  selectedClassName?: string;