@juspay/blend-design-system 0.0.26-beta → 0.0.26

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,5 +1,5 @@
1
1
  import { ColumnManagerProps } from './types';
2
2
  export declare const ColumnManager: {
3
- <T extends Record<string, unknown>>({ columns, visibleColumns, onColumnChange, maxSelections, alwaysSelectedColumns, columnManagerPrimaryAction, columnManagerSecondaryAction, multiSelectWidth, }: ColumnManagerProps<T>): import("react/jsx-runtime").JSX.Element;
3
+ <T extends Record<string, unknown>>({ columns, visibleColumns, onColumnChange, maxSelections, alwaysSelectedColumns, columnManagerPrimaryAction, columnManagerSecondaryAction, multiSelectWidth, disabled, }: ColumnManagerProps<T>): import("react/jsx-runtime").JSX.Element;
4
4
  displayName: string;
5
5
  };
@@ -5,6 +5,7 @@ export type TableFooterProps = {
5
5
  pageSize: number;
6
6
  totalRows: number;
7
7
  isLoading?: boolean;
8
+ showSkeleton?: boolean;
8
9
  hasData?: boolean;
9
10
  onPageChange: (page: number) => void;
10
11
  onPageSizeChange: (size: number) => void;
@@ -9,6 +9,8 @@ export type TableHeaderProps<T extends Record<string, unknown>> = {
9
9
  enableInlineEdit?: boolean;
10
10
  enableColumnManager?: boolean;
11
11
  enableColumnReordering?: boolean;
12
+ showSkeleton?: boolean;
13
+ isLoading?: boolean;
12
14
  columnManagerMaxSelections?: number;
13
15
  columnManagerAlwaysSelected?: string[];
14
16
  columnManagerPrimaryAction?: {
@@ -101,6 +101,7 @@ export type ColumnManagerProps<T extends Record<string, unknown>> = {
101
101
  loading?: boolean;
102
102
  };
103
103
  multiSelectWidth?: number;
104
+ disabled?: boolean;
104
105
  };
105
106
  export type AdvancedFilterProps = {
106
107
  filters: unknown[];