@hybr1d-tech/charizard 0.4.83 → 0.4.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.
@@ -3,7 +3,8 @@ import { UniqueIdentifier } from '@dnd-kit/core';
3
3
 
4
4
  interface Props {
5
5
  id: UniqueIdentifier;
6
+ isHidden?: boolean;
6
7
  }
7
- export declare function SortableItem({ children, id }: PropsWithChildren<Props>): import("react/jsx-runtime").JSX.Element;
8
+ export declare function SortableItem({ children, id, isHidden }: PropsWithChildren<Props>): import("react/jsx-runtime").JSX.Element;
8
9
  export declare function DragHandle(): import("react/jsx-runtime").JSX.Element;
9
10
  export {};
@@ -9,8 +9,9 @@ interface Props<T extends BaseItem> {
9
9
  items: T[];
10
10
  onChange: React.Dispatch<React.SetStateAction<CheckedState[]>>;
11
11
  renderItem(item: T): React.ReactNode;
12
+ search: string;
12
13
  }
13
- export declare function SortableList<T extends BaseItem>({ items: _items, onChange, renderItem }: Props<T>): import("react/jsx-runtime").JSX.Element;
14
+ export declare function SortableList<T extends BaseItem>({ items: _items, onChange, renderItem, search, }: Props<T>): import("react/jsx-runtime").JSX.Element;
14
15
  export declare namespace SortableList {
15
16
  var Item: typeof SortableItem;
16
17
  var DragHandle: typeof import('./SortableItem').DragHandle;