@deadragdoll/reactnu 0.1.73 → 0.1.75

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,4 +1,4 @@
1
- import { PointerEvent, PropsWithChildren } from "react";
1
+ import { PropsWithChildren, ReactNode, RefCallback } from "react";
2
2
  export type NuDragDropItem<T = unknown> = {
3
3
  data: T;
4
4
  id: string;
@@ -16,31 +16,38 @@ export type NuDragDropContext = {
16
16
  type: string;
17
17
  };
18
18
  };
19
+ export type NuDropAction = "copy" | "move";
20
+ export type NuDropResult = {
21
+ /** Lets a target request whether its source should copy or move after a successful drop. */
22
+ action?: NuDropAction;
23
+ /** Identifies the target kind for source-side completion handlers. */
24
+ targetType?: string;
25
+ };
19
26
  export type NuDropTargetOptions = {
20
27
  accepts?: (item: NuDragDropItem) => boolean;
21
- onDrop: (item: NuDragDropItem, context: NuDragDropContext) => boolean | void;
28
+ onDragEnter?: (item: NuDragDropItem, canDrop: boolean) => void;
29
+ onDragLeave?: (item: NuDragDropItem) => void;
30
+ onDrop: (item: NuDragDropItem, context: NuDragDropContext) => boolean | NuDropResult | void;
22
31
  type: string;
23
32
  };
24
- type NuDragDropController = {
25
- beginDrag: (item: NuDragDropItem, sourceElement: HTMLElement, sourceType: string) => void;
26
- cancelDrag: () => void;
27
- dropAt: (clientX: number, clientY: number) => boolean;
28
- moveDrag: (clientX: number, clientY: number) => void;
29
- registerTarget: (element: HTMLElement, options: NuDropTargetOptions) => () => void;
33
+ export type NuDropTargetState = {
34
+ canDrop: boolean;
35
+ isOver: boolean;
36
+ item: NuDragDropItem | null;
30
37
  };
31
- export declare function NuDragDropProvider({ children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element;
32
- export declare function useNuDragDrop(): NuDragDropController;
33
- export declare function useNuDropTarget(element: HTMLElement | null, options: NuDropTargetOptions | undefined): void;
38
+ export declare function NuDragDropProvider({ children }: PropsWithChildren): string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined;
39
+ /** Returns the underlying react-dnd manager for advanced integrations. */
40
+ export declare function useNuDragDrop(): import("dnd-core").DragDropManager;
41
+ export declare function useNuDropTarget(element: HTMLElement | null, options: NuDropTargetOptions | undefined): NuDropTargetState;
34
42
  type NuDragSourceOptions = {
35
43
  disabled?: boolean;
36
44
  getItem: () => NuDragDropItem | false;
37
- onDropAccepted?: () => void;
45
+ onDropAccepted?: (result: NuDropResult) => void;
46
+ renderPreview?: (item: NuDragDropItem) => ReactNode;
38
47
  sourceType: string;
39
48
  };
40
- export declare function useNuDragSource({ disabled, getItem, onDropAccepted, sourceType }: NuDragSourceOptions): {
41
- onPointerCancel(event: PointerEvent<HTMLElement>): void;
42
- onPointerDown(event: PointerEvent<HTMLElement>): void;
43
- onPointerMove(event: PointerEvent<HTMLElement>): void;
44
- onPointerUp(event: PointerEvent<HTMLElement>): void;
49
+ export declare function useNuDragSource({ disabled, getItem, onDropAccepted, renderPreview, sourceType }: NuDragSourceOptions): {
50
+ dragRef: RefCallback<HTMLElement>;
51
+ isDragging: boolean;
45
52
  };
46
53
  export {};
@@ -1,5 +1,5 @@
1
1
  import { HTMLAttributes } from "react";
2
- import { NuDragDropContext, NuDragDropItem } from "../DragDrop";
2
+ import { NuDragDropContext, NuDragDropItem, NuDropResult } from "../DragDrop";
3
3
  import { NuIconContextMenuItems, NuIconArrangeMode, NuIconDropContext, NuIconInfo } from "./IconGrid.types";
4
4
  export type NuIconGridProps = Omit<HTMLAttributes<HTMLDivElement>, "children" | "onDrop"> & {
5
5
  /** Filters icons accepted from another IconGrid before `onIconDrop` is called. */
@@ -14,9 +14,13 @@ export type NuIconGridProps = Omit<HTMLAttributes<HTMLDivElement>, "children" |
14
14
  onIconDrop?: (icon: NuIconInfo, context: NuIconDropContext) => boolean | void;
15
15
  /** Called by the source grid after its icon was transferred to another grid. */
16
16
  onIconMoveOut?: (icon: NuIconInfo, context: NuIconDropContext) => void;
17
- /** Called after an icon was accepted by a non-IconGrid shared drop target. */
18
- onDragOut?: (item: NuDragDropItem<NuIconInfo>) => void;
17
+ /**
18
+ * Called after an icon was accepted by a non-IconGrid shared drop target.
19
+ * Return `false`, or have the target return `{ action: "copy" }`, to keep
20
+ * the source icon in this grid.
21
+ */
22
+ onDragOut?: (item: NuDragDropItem<NuIconInfo>, result: NuDropResult) => boolean | void;
19
23
  /** Receives non-icon shared drag items. Return false to reject the drop. */
20
- onDrop?: (item: NuDragDropItem, context: NuDragDropContext) => boolean | void;
24
+ onDrop?: (item: NuDragDropItem, context: NuDragDropContext) => boolean | NuDropResult | void;
21
25
  };
22
- export declare function NuIconGrid({ accepts, acceptsDrop, className, contextMenuItems: contextMenuItemsSource, defaultArrangeMode, dropTarget, onDragOut, onIconDrop, onIconMoveOut, onDrop, onContextMenu, onPointerDown, ...props }: NuIconGridProps): import("react/jsx-runtime").JSX.Element;
26
+ export declare function NuIconGrid(props: NuIconGridProps): import("react/jsx-runtime").JSX.Element;
@@ -1,6 +1,6 @@
1
- import { ForwardedRef, HTMLAttributes, MouseEvent, RefAttributes } from "react";
1
+ import { ForwardedRef, HTMLAttributes, MouseEvent, ReactNode, RefAttributes } from "react";
2
2
  import { ListBoxGroup, ListBoxItem } from "./internals/types";
3
- import { NuDragDropContext, NuDragDropItem } from "../DragDrop";
3
+ import { NuDragDropContext, NuDragDropItem, NuDropResult } from "../DragDrop";
4
4
  export type { ListBoxCategory, ListBoxGroup, ListBoxItem, ListBoxLabel } from "./internals/types";
5
5
  export type ListBoxHandle = {
6
6
  activateItem: (itemId: string) => void;
@@ -16,6 +16,8 @@ export type ListBoxProps = Omit<HTMLAttributes<HTMLDivElement>, "onDrop" | "onSe
16
16
  checkedIds?: string[];
17
17
  /** Returns the shared drag item for a row, or false to keep it static. */
18
18
  getDragItem?: (item: ListBoxItem, group: ListBoxGroup) => NuDragDropItem | false;
19
+ /** Renders a compact preview for an item dragged from this list. */
20
+ renderDragPreview?: (item: ListBoxItem, group: ListBoxGroup) => ReactNode;
19
21
  onPopupMenu?: (event: MouseEvent<HTMLDivElement>, item: ListBoxItem, group: ListBoxGroup) => void;
20
22
  emptyText?: string;
21
23
  onItemCheckChange?: (item: ListBoxItem, group: ListBoxGroup, checked: boolean) => void;
@@ -27,7 +29,7 @@ export type ListBoxProps = Omit<HTMLAttributes<HTMLDivElement>, "onDrop" | "onSe
27
29
  uncheckedShape?: "box" | "none";
28
30
  onItemSelect?: (item: ListBoxItem, group: ListBoxGroup) => void;
29
31
  /** Receives a shared drag item. Return false to reject it. */
30
- onDrop?: (item: NuDragDropItem, context: NuDragDropContext) => boolean | void;
32
+ onDrop?: (item: NuDragDropItem, context: NuDragDropContext) => boolean | NuDropResult | void;
31
33
  };
32
- declare function ListBoxInner({ acceptsDrop, className, data, checkedIds, emptyText, getDragItem, onPopupMenu, onItemCheckChange, onItemDoubleClick, onItemDragOut, onItemSelect, onDrop, rightCheckBox, selectedId, uncheckedShape, ...props }: ListBoxProps, ref: ForwardedRef<ListBoxHandle>): import("react/jsx-runtime").JSX.Element;
34
+ declare function ListBoxInner({ acceptsDrop, className, data, checkedIds, emptyText, getDragItem, onPopupMenu, onItemCheckChange, onItemDoubleClick, onItemDragOut, onItemSelect, onDrop, renderDragPreview, rightCheckBox, selectedId, uncheckedShape, ...props }: ListBoxProps, ref: ForwardedRef<ListBoxHandle>): import("react/jsx-runtime").JSX.Element;
33
35
  export declare const ListBox: (props: ListBoxProps & RefAttributes<ListBoxHandle>) => ReturnType<typeof ListBoxInner>;
@@ -1,4 +1,4 @@
1
- import { MouseEvent } from "react";
1
+ import { MouseEvent, ReactNode } from "react";
2
2
  import { ListBoxGroup, ListBoxItem } from "./types";
3
3
  import { NuDragDropItem } from "../../DragDrop";
4
4
  type ListBoxGroupViewProps = {
@@ -10,6 +10,7 @@ type ListBoxGroupViewProps = {
10
10
  onActivateItem: (item: ListBoxItem, group: ListBoxGroup, itemId: string) => void;
11
11
  onDoubleClickItem?: (item: ListBoxItem, group: ListBoxGroup) => void;
12
12
  onItemDragOut?: (item: ListBoxItem, group: ListBoxGroup) => void;
13
+ renderDragPreview?: (item: ListBoxItem, group: ListBoxGroup) => ReactNode;
13
14
  onPopupMenuItem?: (event: MouseEvent<HTMLDivElement>, item: ListBoxItem, group: ListBoxGroup, itemId: string) => void;
14
15
  onToggleItemCheck: (itemId: string) => void;
15
16
  registerItemRef: (itemId: string, node: HTMLDivElement | null) => void;
@@ -18,5 +19,5 @@ type ListBoxGroupViewProps = {
18
19
  selectedId?: string;
19
20
  uncheckedShape: "box" | "none";
20
21
  };
21
- export declare function ListBoxGroupView({ group, groupIndex, getDragItem, isItemChecked, listboxId, onActivateItem, onDoubleClickItem, onItemDragOut, onPopupMenuItem, onToggleItemCheck, registerItemRef, resolvedActiveId, rightCheckBox, selectedId, uncheckedShape }: ListBoxGroupViewProps): import("react/jsx-runtime").JSX.Element;
22
+ export declare function ListBoxGroupView({ group, groupIndex, getDragItem, isItemChecked, listboxId, onActivateItem, onDoubleClickItem, onItemDragOut, renderDragPreview, onPopupMenuItem, onToggleItemCheck, registerItemRef, resolvedActiveId, rightCheckBox, selectedId, uncheckedShape }: ListBoxGroupViewProps): import("react/jsx-runtime").JSX.Element;
22
23
  export {};
@@ -1,4 +1,4 @@
1
- import { MouseEvent } from "react";
1
+ import { MouseEvent, ReactNode } from "react";
2
2
  import { NuDragDropItem } from "../../DragDrop";
3
3
  import { ListBoxGroup, ListBoxItem } from "./types";
4
4
  type ListBoxItemViewProps = {
@@ -14,10 +14,11 @@ type ListBoxItemViewProps = {
14
14
  onDragOut?: (item: ListBoxItem, group: ListBoxGroup) => void;
15
15
  onPopupMenu?: (event: MouseEvent<HTMLDivElement>, item: ListBoxItem, group: ListBoxGroup, itemId: string) => void;
16
16
  onToggleCheck: (itemId: string) => void;
17
+ renderDragPreview?: (item: ListBoxItem, group: ListBoxGroup) => ReactNode;
17
18
  registerItemRef: (itemId: string, node: HTMLDivElement | null) => void;
18
19
  rightCheckBox: boolean;
19
20
  uncheckedShape: "box" | "none";
20
21
  };
21
- declare function ListBoxItemViewInner({ group, getDragItem, isActive, isChecked, isSelected, item, itemId, onActivate, onPopupMenu, onDoubleClick, onDragOut, onToggleCheck, registerItemRef, rightCheckBox, uncheckedShape }: ListBoxItemViewProps): import("react/jsx-runtime").JSX.Element;
22
+ declare function ListBoxItemViewInner({ group, getDragItem, isActive, isChecked, isSelected, item, itemId, onActivate, onPopupMenu, onDoubleClick, onDragOut, onToggleCheck, renderDragPreview, registerItemRef, rightCheckBox, uncheckedShape }: ListBoxItemViewProps): import("react/jsx-runtime").JSX.Element;
22
23
  export declare const ListBoxItemView: import("react").MemoExoticComponent<typeof ListBoxItemViewInner>;
23
24
  export {};
@@ -1,5 +1,6 @@
1
- import { ForwardedRef, HTMLAttributes, RefAttributes } from "react";
1
+ import { ForwardedRef, HTMLAttributes, ReactNode, RefAttributes } from "react";
2
2
  import { ListViewColumn, ListViewRowBase } from "./internals/types";
3
+ import { NuDragDropContext, NuDragDropItem, NuDropResult } from "../DragDrop";
3
4
  export type { ListViewColumn, ListViewRowBase } from "./internals/types";
4
5
  export type ListViewHandle = {
5
6
  activateRow: (rowId: string) => void;
@@ -9,19 +10,29 @@ export type ListViewHandle = {
9
10
  toggleRowCheck: (rowId: string) => void;
10
11
  };
11
12
  export type ListViewProps<T extends ListViewRowBase> = Omit<HTMLAttributes<HTMLDivElement>, "onSelect"> & {
13
+ /** Decides whether this list can receive a shared drag item. */
14
+ acceptsDrop?: (item: NuDragDropItem) => boolean;
12
15
  activeRowId?: string;
13
16
  checkedIds?: string[];
14
17
  columns: ListViewColumn<T>[];
15
18
  data: T[];
16
19
  defaultActiveRowId?: string;
17
20
  emptyText?: string;
21
+ /** Returns the shared drag item for a row, or false to keep it static. */
22
+ getDragItem?: (row: T) => NuDragDropItem | false;
18
23
  onActiveRowChange?: (row: T) => void;
19
24
  onRowCheckChange?: (row: T, checked: boolean) => void;
20
25
  onRowDoubleClick?: (row: T) => void;
26
+ /** Called after this list row was accepted by a different shared drop target. */
27
+ onRowDragOut?: (row: T) => void;
21
28
  onRowSelect?: (row: T) => void;
29
+ /** Receives a shared drag item. Return false to reject it. */
30
+ onDrop?: (item: NuDragDropItem, context: NuDragDropContext) => boolean | NuDropResult | void;
31
+ /** Renders a compact preview for a row dragged from this list. */
32
+ renderDragPreview?: (row: T) => ReactNode;
22
33
  selectedId?: string;
23
34
  showCheckBox?: boolean;
24
35
  uncheckedShape?: "box" | "none";
25
36
  };
26
- declare function ListViewInner<T extends ListViewRowBase>({ activeRowId: activeRowIdProp, checkedIds, className, columns, data, defaultActiveRowId, emptyText, onActiveRowChange, onRowCheckChange, onRowDoubleClick, onRowSelect, selectedId, showCheckBox, uncheckedShape, ...props }: ListViewProps<T>, ref: ForwardedRef<ListViewHandle>): import("react/jsx-runtime").JSX.Element;
37
+ declare function ListViewInner<T extends ListViewRowBase>({ acceptsDrop, activeRowId: activeRowIdProp, checkedIds, className, columns, data, defaultActiveRowId, emptyText, getDragItem, onActiveRowChange, onRowCheckChange, onRowDoubleClick, onRowDragOut, onRowSelect, onDrop, renderDragPreview, selectedId, showCheckBox, uncheckedShape, ...props }: ListViewProps<T>, ref: ForwardedRef<ListViewHandle>): import("react/jsx-runtime").JSX.Element;
27
38
  export declare const ListView: <T extends ListViewRowBase>(props: ListViewProps<T> & RefAttributes<ListViewHandle>) => ReturnType<typeof ListViewInner>;
@@ -1,18 +1,23 @@
1
+ import { ReactNode } from "react";
2
+ import { NuDragDropItem } from "../../DragDrop";
1
3
  import { ListViewColumn, ListViewRowBase } from "./types";
2
4
  type ListViewRowProps<T extends ListViewRowBase> = {
3
5
  columns: ListViewColumn<T>[];
4
6
  isActive: boolean;
5
7
  isChecked: boolean;
6
8
  isSelected: boolean;
9
+ getDragItem?: (row: T) => NuDragDropItem | false;
7
10
  onActivate: (rowId: string) => void;
8
11
  onDoubleClick?: (row: T) => void;
12
+ onDragOut?: (row: T) => void;
9
13
  onToggleCheck: (rowId: string) => void;
10
14
  registerRowRef: (rowId: string, node: HTMLDivElement | null) => void;
15
+ renderDragPreview?: (row: T) => ReactNode;
11
16
  row: T;
12
17
  showCheckBox: boolean;
13
18
  templateColumns: string;
14
19
  uncheckedShape: "box" | "none";
15
20
  };
16
- declare function ListViewRowInner<T extends ListViewRowBase>({ columns, isActive, isChecked, isSelected, onActivate, onDoubleClick, onToggleCheck, registerRowRef, row, showCheckBox, templateColumns, uncheckedShape }: ListViewRowProps<T>): import("react/jsx-runtime").JSX.Element;
21
+ declare function ListViewRowInner<T extends ListViewRowBase>({ columns, isActive, isChecked, isSelected, getDragItem, onActivate, onDoubleClick, onDragOut, onToggleCheck, registerRowRef, renderDragPreview, row, showCheckBox, templateColumns, uncheckedShape }: ListViewRowProps<T>): import("react/jsx-runtime").JSX.Element;
17
22
  export declare const ListViewRow: typeof ListViewRowInner;
18
23
  export {};
@@ -1,6 +1,6 @@
1
- import { ForwardedRef, HTMLAttributes, MouseEvent, RefAttributes } from "react";
1
+ import { ForwardedRef, HTMLAttributes, MouseEvent, ReactNode, RefAttributes } from "react";
2
2
  import { TreeListColumn, TreeListCellContext, TreeListGetCellContent, TreeListItemBase } from "./internals/types";
3
- import { NuDragDropContext, NuDragDropItem } from "../DragDrop";
3
+ import { NuDragDropContext, NuDragDropItem, NuDropResult } from "../DragDrop";
4
4
  export type { TreeListCellContext, TreeListColumn, TreeListGetCellContent, TreeListItemBase } from "./internals/types";
5
5
  export type TreeListViewHandle = {
6
6
  activateItem: (itemId: string) => void;
@@ -16,6 +16,8 @@ export type TreeListViewProps<T extends TreeListItemBase<T>> = Omit<HTMLAttribut
16
16
  acceptsDrop?: (item: NuDragDropItem) => boolean;
17
17
  activeItemId?: string;
18
18
  checkedIds?: string[];
19
+ /** Persists user-resized column widths in `localStorage` under `reactnu.<key>`. */
20
+ columnStoreKey?: string;
19
21
  onPopupMenu?: (event: MouseEvent<HTMLDivElement>, item: T, context: TreeListCellContext<T>) => void;
20
22
  columns: TreeListColumn<T>[];
21
23
  data: T[];
@@ -33,11 +35,13 @@ export type TreeListViewProps<T extends TreeListItemBase<T>> = Omit<HTMLAttribut
33
35
  onItemDoubleClick?: (item: T) => void;
34
36
  /** Called after this tree row was accepted by a different shared drop target. */
35
37
  onItemDragOut?: (item: T, context: TreeListCellContext<T>) => void;
38
+ /** Renders a compact preview for an item dragged from this tree. */
39
+ renderDragPreview?: (item: T, context: TreeListCellContext<T>) => ReactNode;
36
40
  onItemSelect?: (item: T) => void;
37
41
  /** Receives a shared drag item. Return false to reject it. */
38
- onDrop?: (item: NuDragDropItem, context: NuDragDropContext) => boolean | void;
42
+ onDrop?: (item: NuDragDropItem, context: NuDragDropContext) => boolean | NuDropResult | void;
39
43
  selectedId?: string;
40
44
  uncheckedShape?: "box" | "none";
41
45
  };
42
- declare function TreeListViewInner<T extends TreeListItemBase<T>>({ acceptsDrop, activeItemId: activeItemIdProp, checkedIds, className, columns, onPopupMenu, data, dataVersion, defaultActiveItemId, defaultExpandedIds, emptyText, expandedIds, getDragItem, getCellContent, onActiveItemChange, onExpandedIdsChange, onItemCheckChange, onItemDoubleClick, onItemDragOut, onItemSelect, onDrop, selectedId, uncheckedShape, ...props }: TreeListViewProps<T>, ref: ForwardedRef<TreeListViewHandle>): import("react/jsx-runtime").JSX.Element;
46
+ declare function TreeListViewInner<T extends TreeListItemBase<T>>({ acceptsDrop, activeItemId: activeItemIdProp, checkedIds, className, columnStoreKey, columns, onPopupMenu, data, dataVersion, defaultActiveItemId, defaultExpandedIds, emptyText, expandedIds, getDragItem, getCellContent, onActiveItemChange, onExpandedIdsChange, onItemCheckChange, onItemDoubleClick, onItemDragOut, renderDragPreview, onItemSelect, onDrop, selectedId, uncheckedShape, ...props }: TreeListViewProps<T>, ref: ForwardedRef<TreeListViewHandle>): import("react/jsx-runtime").JSX.Element;
43
47
  export declare const TreeListView: <T extends TreeListItemBase<T>>(props: TreeListViewProps<T> & RefAttributes<TreeListViewHandle>) => ReturnType<typeof TreeListViewInner>;
@@ -1,4 +1,4 @@
1
- import { MouseEvent } from "react";
1
+ import { MouseEvent, ReactNode } from "react";
2
2
  import { NuDragDropItem } from "../../DragDrop";
3
3
  import { TreeListCellContext, TreeListColumn, TreeListGetCellContent, TreeListItemBase } from "./types";
4
4
  type TreeListViewRowProps<T extends TreeListItemBase<T>> = {
@@ -16,6 +16,7 @@ type TreeListViewRowProps<T extends TreeListItemBase<T>> = {
16
16
  onActivateItem: (item: T, itemId: string) => void;
17
17
  onDoubleClickItem?: (item: T) => void;
18
18
  onItemDragOut?: (item: T, context: TreeListCellContext<T>) => void;
19
+ renderDragPreview?: (item: T, context: TreeListCellContext<T>) => ReactNode;
19
20
  onPopupMenuItem?: (event: MouseEvent<HTMLDivElement>, item: T, context: TreeListCellContext<T>) => void;
20
21
  onToggleItemCheck?: (item: T, checked: boolean) => void;
21
22
  onToggleItemExpanded: (item: T, expanded: boolean) => void;
@@ -28,6 +29,6 @@ type TreeListViewRowProps<T extends TreeListItemBase<T>> = {
28
29
  treeId: string;
29
30
  uncheckedShape: "box" | "none";
30
31
  };
31
- declare function TreeListViewRowInner<T extends TreeListItemBase<T>>({ activeItemId, checkedIds, columns, depth, expandedIdSet, getCellContent, getDragItem, guideMask, guideOffsets, hasNextSibling, item, onActivateItem, onDoubleClickItem, onItemDragOut, onPopupMenuItem, onToggleItemCheck, onToggleItemExpanded, originOffset, registerItemRef, rowIndexMap, selectedItemId, templateColumns, treeColumnId, treeId, uncheckedShape }: TreeListViewRowProps<T>): import("react/jsx-runtime").JSX.Element;
32
+ declare function TreeListViewRowInner<T extends TreeListItemBase<T>>({ activeItemId, checkedIds, columns, depth, expandedIdSet, getCellContent, getDragItem, guideMask, guideOffsets, hasNextSibling, item, onActivateItem, onDoubleClickItem, onItemDragOut, renderDragPreview, onPopupMenuItem, onToggleItemCheck, onToggleItemExpanded, originOffset, registerItemRef, rowIndexMap, selectedItemId, templateColumns, treeColumnId, treeId, uncheckedShape }: TreeListViewRowProps<T>): import("react/jsx-runtime").JSX.Element;
32
33
  export declare const TreeListViewRow: typeof TreeListViewRowInner;
33
34
  export {};