stp-ui-kit 0.0.113 → 0.0.114

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.
@@ -8,6 +8,11 @@ export declare function TableRow({ className, ...props }: React.ComponentProps<"
8
8
  type VerticalAlign = "top" | "middle" | "bottom";
9
9
  interface CustomTableHeadProps extends React.ComponentProps<"th"> {
10
10
  variant?: "primary" | "secondary";
11
+ sortable?: boolean;
12
+ sortDirection?: "asc" | "desc" | null;
13
+ onSort?: () => void;
14
+ info?: boolean;
15
+ onInfoClick?: () => void;
11
16
  }
12
17
  export declare const TableHead: React.FC<CustomTableHeadProps>;
13
18
  interface CustomTableCellProps extends ComponentProps<"td"> {
@@ -6,3 +6,4 @@ type Story = StoryObj<typeof Table>;
6
6
  export declare const Default: Story;
7
7
  export declare const WithoutCaption: Story;
8
8
  export declare const EmptyState: Story;
9
+ export declare const Sortable: Story;