pillardash-ui-react 0.1.93 → 0.1.94
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.d.ts +1 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import React$1, { FC, ReactNode, InputHTMLAttributes, TextareaHTMLAttributes } from 'react';
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
-
import { LucideIcon } from 'lucide-react';
|
|
4
3
|
|
|
5
4
|
interface ButtonProps {
|
|
6
5
|
/** The content of the button */
|
|
@@ -405,7 +404,7 @@ type TableDropdownProps = {
|
|
|
405
404
|
actions: {
|
|
406
405
|
label: string;
|
|
407
406
|
onClick: () => void;
|
|
408
|
-
icon?: React$1.ReactNode
|
|
407
|
+
icon?: React$1.ReactNode;
|
|
409
408
|
disabled?: boolean;
|
|
410
409
|
variant?: "default" | "danger";
|
|
411
410
|
}[];
|