@hybr1d-tech/charizard 1.1.72 → 1.1.73
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/hybr1d-ui.js +2089 -1975
- package/dist/hybr1d-ui.umd.cjs +14 -14
- package/dist/index.d.ts +9 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ import { ReactElement } from 'react';
|
|
|
21
21
|
import { SingleValue } from 'react-select';
|
|
22
22
|
import { StoreApi } from 'zustand';
|
|
23
23
|
import { StylesConfig } from 'react-select';
|
|
24
|
+
import { Table as Table_2 } from '@tanstack/react-table';
|
|
24
25
|
import { ToastOptions } from 'react-toastify';
|
|
25
26
|
import { ToastPosition } from 'react-toastify';
|
|
26
27
|
import { UseBoundStore } from 'zustand';
|
|
@@ -3366,6 +3367,14 @@ export declare interface UsersChipUser {
|
|
|
3366
3367
|
user_position?: string | null;
|
|
3367
3368
|
}
|
|
3368
3369
|
|
|
3370
|
+
export declare function useStickyColumns({ table, stickyIds, formattedColumns }: UseStickyColumnsProps): void;
|
|
3371
|
+
|
|
3372
|
+
declare interface UseStickyColumnsProps {
|
|
3373
|
+
table: Table_2<any>;
|
|
3374
|
+
stickyIds?: string[];
|
|
3375
|
+
formattedColumns: any[];
|
|
3376
|
+
}
|
|
3377
|
+
|
|
3369
3378
|
export declare const useTableStore: UseBoundStore<Omit<StoreApi<TableStore>, "setState"> & {
|
|
3370
3379
|
setState(partial: TableStore | Partial<TableStore> | ((state: TableStore) => TableStore | Partial<TableStore>), replace?: false | undefined, action?: (string | {
|
|
3371
3380
|
[x: string]: unknown;
|