prlg-ui 1.8.153 → 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
@@ -514,8 +514,8 @@ declare type __VLS_Props_8 = {
514
514
  declare type __VLS_Props_9 = Props;
515
515
 
516
516
  declare type __VLS_PublicProps = {
517
- "currentPage"?: number;
518
- "perPage"?: number;
517
+ 'currentPage'?: number;
518
+ 'perPage'?: number;
519
519
  'selectedRows'?: DataItem[] | DataItem | null;
520
520
  } & __VLS_Props_2;
521
521
 
@@ -1880,6 +1880,8 @@ declare interface TableBodyProps {
1880
1880
  enable: boolean;
1881
1881
  itemHeight: number;
1882
1882
  } | undefined;
1883
+ checkboxKey?: string;
1884
+ checkboxDisabled?: (string | number)[];
1883
1885
  rowStyle?: (data: DataItem) => CSSProperties;
1884
1886
  }
1885
1887
 
@@ -1924,6 +1926,10 @@ declare type TableProps = {
1924
1926
  rowStyle?: (data: DataItem) => CSSProperties;
1925
1927
  /** Состояние загрузки */
1926
1928
  loading?: boolean;
1929
+ /** ключ для чекбоксов */
1930
+ checkboxKey?: string;
1931
+ /** ключ для чекбоксов */
1932
+ checkboxDisabled?: (string | number)[];
1927
1933
  };
1928
1934
 
1929
1935
  declare type TableSize = 'small' | 'default' | 'large';