@trafilea/afrodita-components 6.55.0 → 6.55.1

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/build/index.d.ts CHANGED
@@ -4335,17 +4335,8 @@ interface TableProps {
4335
4335
 
4336
4336
  declare const SizeChartTableV3: React.FC<TableProps>;
4337
4337
 
4338
- interface DataCell {
4339
- rowSpan?: number;
4340
- content: string;
4341
- }
4342
- declare type DataRow = (DataCell | string)[];
4343
- interface DataSet {
4344
- header: string;
4345
- data: DataRow[];
4346
- }
4347
4338
  interface SizeChartTableV4Props {
4348
- data: DataSet[];
4339
+ data: string[][];
4349
4340
  }
4350
4341
 
4351
4342
  declare const SizeChartTableV4: React.FC<SizeChartTableV4Props>;