prlg-ui 1.8.154 → 1.8.155

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/dist/index.d.ts CHANGED
@@ -1881,7 +1881,7 @@ declare interface TableBodyProps {
1881
1881
  itemHeight: number;
1882
1882
  } | undefined;
1883
1883
  checkboxKey?: string;
1884
- checkboxDisabled?: string[] | number[];
1884
+ checkboxDisabled?: (string | number)[];
1885
1885
  rowStyle?: (data: DataItem) => CSSProperties;
1886
1886
  }
1887
1887
 
@@ -1929,7 +1929,7 @@ declare type TableProps = {
1929
1929
  /** ключ для чекбоксов */
1930
1930
  checkboxKey?: string;
1931
1931
  /** ключ для чекбоксов */
1932
- checkboxDisabled?: string[] | number[];
1932
+ checkboxDisabled?: (string | number)[];
1933
1933
  };
1934
1934
 
1935
1935
  declare type TableSize = 'small' | 'default' | 'large';