gantri-components 2.83.0-beta.10 → 2.83.0-beta.11

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.
@@ -1,3 +1,4 @@
1
+ import { Property } from 'csstype';
1
2
  import { DefaultTheme } from 'styled-components';
2
3
  export declare const getTableRowBackgroundColors: ({ theme, backgroundColor, clickableRowHoverBackgroundColor, }: {
3
4
  backgroundColor: string | undefined;
@@ -20,4 +21,5 @@ export declare const StyledTable: import("styled-components").StyledComponent<"t
20
21
  stickyFirstColumn: boolean | undefined;
21
22
  stickyFooter: boolean | undefined;
22
23
  stickyLastColumn: boolean | undefined;
24
+ verticalAlign: Property.VerticalAlign | undefined;
23
25
  }, never>;
@@ -1,3 +1,4 @@
1
+ import { Property } from 'csstype';
1
2
  import { Cell, ColumnDef, Header, Row, RowData, TableOptions } from '@tanstack/react-table';
2
3
  import { Dispatch, HTMLAttributes, MouseEvent, MouseEventHandler, SetStateAction } from 'react';
3
4
  import { PagingProps } from './components/table-actions-wrapper/components/paging/paging.types';
@@ -71,6 +72,7 @@ export interface TableDefaultProps {
71
72
  stickyFooter: boolean;
72
73
  /** Providing `customColumns` will automatically make the last column sticky. */
73
74
  stickyLastColumn: boolean;
75
+ verticalAlign: Property.VerticalAlign;
74
76
  }
75
77
  export type GetHeaderCellProps<TData extends RowData, TValue = unknown> = (cell?: Header<TData, TValue>) => CustomCellProps;
76
78
  /** Include `status` in the returned object to set the row status color. */