loon-bulma-react 2026.0.31 → 2026.0.32
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/components/DataTable/DataTable.d.ts +1 -1
- package/dist/hooks/useContextMenu.d.ts +1 -1
- package/dist/index.js +1477 -1472
- package/package.json +1 -1
|
@@ -195,7 +195,7 @@ declare namespace DataTable {
|
|
|
195
195
|
children: React.ReactNode;
|
|
196
196
|
disabled?: boolean;
|
|
197
197
|
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
|
|
198
|
-
onItemClick
|
|
198
|
+
onItemClick? /** is de tabel is de tabel hoverbaar (en is dat ook zichtbaar?) hebben? (default = `false`) */: (isClickable: boolean) => void;
|
|
199
199
|
} & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
200
200
|
Link({ children, onItemClick, disabled, ...props }: {
|
|
201
201
|
children: React.ReactNode;
|
|
@@ -24,6 +24,6 @@ declare function useContextMenu<T extends HTMLElement = HTMLElement>(outerRef: R
|
|
|
24
24
|
*/
|
|
25
25
|
declare function ContextMenu({ outerRef, children }: {
|
|
26
26
|
outerRef: React.RefObject<HTMLElement | null> | null;
|
|
27
|
-
children: React.ReactNode;
|
|
27
|
+
children: React.ReactNode | (() => React.ReactNode);
|
|
28
28
|
}): import("react/jsx-runtime").JSX.Element;
|
|
29
29
|
export { useContextMenu, useContextMenu as useRightClick, ContextMenu, ContextMenu as RightClickMenu };
|