@datavac/ui-kit 1.8.0-data-table.1 → 1.8.0-data-table.3

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.
@@ -32,6 +32,11 @@ export interface DataTableColumn<T = Record<string, unknown>> {
32
32
  * В планшетных и мобильных карточках колонка скрывается.
33
33
  */
34
34
  desktopOnly?: boolean;
35
+ /**
36
+ * На мобайле (< 480px) колонка занимает половину ширины.
37
+ * Соседние `mobileHalf`-колонки группируются в одну строку.
38
+ */
39
+ mobileHalf?: boolean;
35
40
  }
36
41
  export interface DataTableProps<T = Record<string, unknown>> {
37
42
  columns: DataTableColumn<T>[];