@v1nt1248/3nclient-lib 0.2.73 → 0.2.74

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.
@@ -3,6 +3,11 @@ import { Ui3nTableBodyBaseItem, Ui3nTableConfig, Ui3nTableEmits, Ui3nTableProps
3
3
  import { Ui3nCheckboxValue } from '../../ui3n-checkbox/types';
4
4
  export declare function useTable<T extends Ui3nTableBodyBaseItem>(props: Ui3nTableProps<T>, emits: Ui3nTableEmits<T>): {
5
5
  tableEl: Ref<HTMLDivElement | null, HTMLDivElement | null>;
6
+ unusedPlaceCssStyle: import('../../../../vue/dist/vue.esm-bundler.js').ComputedRef<{
7
+ minHeight?: undefined;
8
+ } | {
9
+ minHeight: string;
10
+ }>;
6
11
  currentConfig: Ref<{
7
12
  sortOrder?: {
8
13
  field: UnwrapRef<keyof T>;
@@ -15,6 +15,7 @@ export type Ui3nTableConfig<T extends Ui3nTableBodyBaseItem, K extends keyof T =
15
15
  };
16
16
  fieldAsRowKey?: keyof T;
17
17
  showNoDataMessage?: boolean;
18
+ minHeightUnusedPlace?: number | string;
18
19
  };
19
20
  export type Ui3nTableHeadProps<T extends Ui3nTableBodyBaseItem> = {
20
21
  key: keyof T;