gantri-components 2.90.0-beta.11 → 2.90.0-beta.12

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.
@@ -0,0 +1 @@
1
+ export * from './selectable-row-checkbox-wrapper';
@@ -0,0 +1,3 @@
1
+ import { PropsWithChildren } from 'react';
2
+ import { SelectableRowCheckboxWrapperProps } from './selectable-row-checkbox-wrapper.types';
3
+ export declare const SelectableRowCheckboxWrapper: (props: PropsWithChildren<SelectableRowCheckboxWrapperProps>) => JSX.Element;
@@ -0,0 +1,4 @@
1
+ export interface SelectableRowCheckboxWrapperProps {
2
+ Component: JSX.Element;
3
+ index: number;
4
+ }
@@ -1,4 +1,3 @@
1
- export declare const selectableRowsCheckboxSize = "2rem";
2
1
  export declare const dataAttrIsRowSelected = "data-is-row-selected";
3
2
  export declare const rowSelectionTypes: {
4
3
  readonly checkboxes: "checkboxes";
@@ -1,4 +1,5 @@
1
1
  export type { GetAfterRowComponentDef, AfterRowComponentDef, } from './components/after-row-component/after-row-component.types';
2
+ export * from './hooks/use-row-selection/use-row-selection.constants';
2
3
  export * from './table';
3
4
  export * from './table.providers';
4
5
  export * from './table.types';