@apexcura/ui-components 0.0.16-Beta505 → 0.0.16-Beta507

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.
@@ -97,12 +97,20 @@ export type ElementType = {
97
97
  }[];
98
98
  }[];
99
99
  tbody?: {
100
- _id?: string;
100
+ id?: string;
101
101
  name?: string;
102
102
  label?: string;
103
103
  element?: string;
104
104
  type?: string;
105
105
  value?: boolean;
106
+ children?: {
107
+ id?: string;
108
+ name?: string;
109
+ label?: string;
110
+ element?: string;
111
+ type?: string;
112
+ value?: boolean;
113
+ }[];
106
114
  }[];
107
115
  optionType?: string;
108
116
  selectedClassName?: string;
@@ -184,5 +192,6 @@ export type ElementType = {
184
192
  fileSize?: number;
185
193
  allowOne?: boolean;
186
194
  showSerialNumber?: boolean;
195
+ isTextSelect?: boolean;
187
196
  };
188
197
  export {};