@hybr1d-tech/charizard 1.1.83 → 1.1.85
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 +1590 -1593
- package/dist/hybr1d-ui.umd.cjs +11 -11
- package/dist/index.d.ts +6 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as accordion from '@zag-js/accordion';
|
|
2
2
|
import { ActionMeta } from 'react-select';
|
|
3
3
|
import { ClassNames } from 'react-day-picker';
|
|
4
|
+
import { ColumnPinningState } from '@tanstack/react-table';
|
|
4
5
|
import { DateRange } from 'react-day-picker';
|
|
5
6
|
import { default as default_2 } from 'react';
|
|
6
7
|
import * as dialog from '@zag-js/dialog';
|
|
@@ -2725,7 +2726,7 @@ declare interface SwitchV2Props extends Omit<zagSwitch.Context, 'id'> {
|
|
|
2725
2726
|
|
|
2726
2727
|
export declare const Tab: default_2.FC<TabProps>;
|
|
2727
2728
|
|
|
2728
|
-
export declare function Table({ data, loaderConfig, columns, filterConfig, sortConfig, rowSelectionConfig, actionsConfig, searchConfig, totalText, paginationConfig, emptyStateConfig, tableStyleConfig, customColumnConfig, exportConfig, customActionItems, visibilityConfig, }: TableProps): JSX_2.Element;
|
|
2729
|
+
export declare function Table({ data, loaderConfig, columns, filterConfig, sortConfig, rowSelectionConfig, actionsConfig, searchConfig, totalText, paginationConfig, emptyStateConfig, tableStyleConfig, customColumnConfig, exportConfig, customActionItems, visibilityConfig, pinningConfig, }: TableProps): JSX_2.Element;
|
|
2729
2730
|
|
|
2730
2731
|
export declare enum TABLE_ACTION_TYPES {
|
|
2731
2732
|
SEARCH = "search",
|
|
@@ -2909,6 +2910,10 @@ export declare interface TableProps {
|
|
|
2909
2910
|
columnVisibility: VisibilityState;
|
|
2910
2911
|
setColumnVisibility: React_2.Dispatch<React_2.SetStateAction<VisibilityState>>;
|
|
2911
2912
|
};
|
|
2913
|
+
pinningConfig?: {
|
|
2914
|
+
columnPinning: ColumnPinningState;
|
|
2915
|
+
setColumnPinning: React_2.Dispatch<React_2.SetStateAction<ColumnPinningState>>;
|
|
2916
|
+
};
|
|
2912
2917
|
}
|
|
2913
2918
|
|
|
2914
2919
|
export declare interface TableStore {
|