@reeverdev/ui 0.2.80 → 0.2.81
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/index.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1334,6 +1334,8 @@ declare const treeItemVariants: (props?: ({
|
|
|
1334
1334
|
interface BaseListProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onSelect" | "onDrop" | "onDragStart" | "onDragEnter" | "onDragOver" | "onDragLeave" | "onDragEnd" | "draggable">, VariantProps<typeof listVariants> {
|
|
1335
1335
|
/** Children for simple list mode */
|
|
1336
1336
|
children?: React$1.ReactNode;
|
|
1337
|
+
/** Custom drag icon or false to hide */
|
|
1338
|
+
dragIcon?: React$1.ReactNode | false;
|
|
1337
1339
|
}
|
|
1338
1340
|
interface FlatListProps<T extends ListDataItem = ListDataItem> extends BaseListProps {
|
|
1339
1341
|
/** Items for flat list rendering */
|
package/dist/index.d.ts
CHANGED
|
@@ -1334,6 +1334,8 @@ declare const treeItemVariants: (props?: ({
|
|
|
1334
1334
|
interface BaseListProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onSelect" | "onDrop" | "onDragStart" | "onDragEnter" | "onDragOver" | "onDragLeave" | "onDragEnd" | "draggable">, VariantProps<typeof listVariants> {
|
|
1335
1335
|
/** Children for simple list mode */
|
|
1336
1336
|
children?: React$1.ReactNode;
|
|
1337
|
+
/** Custom drag icon or false to hide */
|
|
1338
|
+
dragIcon?: React$1.ReactNode | false;
|
|
1337
1339
|
}
|
|
1338
1340
|
interface FlatListProps<T extends ListDataItem = ListDataItem> extends BaseListProps {
|
|
1339
1341
|
/** Items for flat list rendering */
|