loon-bulma-react 2026.0.28 → 2026.0.30
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/Button/Button.d.ts +3 -0
- package/dist/components/DataTable/DataTable.d.ts +4 -2
- package/dist/components/DataTable/DataTableDropdown.d.ts +4 -2
- package/dist/components/Dropdown/Dropdown.d.ts +4 -2
- package/dist/index.js +665 -649
- package/dist/styles/datatable-dropdown.scss +5 -0
- package/dist/styles/dropdown.scss +5 -0
- package/package.json +1 -1
|
@@ -76,6 +76,9 @@ declare const Button: {
|
|
|
76
76
|
Light(props: StrictOmit<ButtonProps, "color" | "isStatic">): import("react/jsx-runtime").JSX.Element;
|
|
77
77
|
Dark(props: StrictOmit<ButtonProps, "color" | "isStatic">): import("react/jsx-runtime").JSX.Element;
|
|
78
78
|
None(props: StrictOmit<ButtonProps, "color" | "isStatic">): import("react/jsx-runtime").JSX.Element;
|
|
79
|
+
Theme({ invert, ...props }: {
|
|
80
|
+
invert?: boolean;
|
|
81
|
+
} & StrictOmit<ButtonProps, "color" | "isStatic">): import("react/jsx-runtime").JSX.Element;
|
|
79
82
|
};
|
|
80
83
|
type DefinedButtonProps = StrictOmit<ButtonProps, 'children' | 'isStatic'> & {
|
|
81
84
|
icon: IconProp;
|
|
@@ -189,14 +189,16 @@ declare namespace DataTable {
|
|
|
189
189
|
children: React.ReactNode;
|
|
190
190
|
}): import("react/jsx-runtime").JSX.Element;
|
|
191
191
|
Divider(): import("react/jsx-runtime").JSX.Element;
|
|
192
|
-
Item({ children, onClick, onItemClick, ...props }: {
|
|
192
|
+
Item({ children, onClick, onItemClick, disabled, ...props }: {
|
|
193
193
|
children: React.ReactNode;
|
|
194
|
+
disabled?: boolean;
|
|
194
195
|
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
|
|
195
196
|
onItemClick?: (isClickable: boolean) => void;
|
|
196
197
|
} & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
197
|
-
Link({ children, onItemClick, ...props }: {
|
|
198
|
+
Link({ children, onItemClick, disabled, ...props }: {
|
|
198
199
|
children: React.ReactNode;
|
|
199
200
|
onItemClick?: (isClickable: boolean) => void;
|
|
201
|
+
disabled?: boolean;
|
|
200
202
|
} & React.AnchorHTMLAttributes<HTMLAnchorElement>): import("react/jsx-runtime").JSX.Element;
|
|
201
203
|
};
|
|
202
204
|
var Container: typeof DataTableContainer;
|
|
@@ -23,14 +23,16 @@ declare const DataTableDropdown: {
|
|
|
23
23
|
children: React.ReactNode;
|
|
24
24
|
}): import("react/jsx-runtime").JSX.Element;
|
|
25
25
|
Divider(): import("react/jsx-runtime").JSX.Element;
|
|
26
|
-
Item({ children, onClick, onItemClick, ...props }: {
|
|
26
|
+
Item({ children, onClick, onItemClick, disabled, ...props }: {
|
|
27
27
|
children: React.ReactNode;
|
|
28
|
+
disabled?: boolean;
|
|
28
29
|
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
|
|
29
30
|
onItemClick?: (isClickable: boolean) => void;
|
|
30
31
|
} & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
31
|
-
Link({ children, onItemClick, ...props }: {
|
|
32
|
+
Link({ children, onItemClick, disabled, ...props }: {
|
|
32
33
|
children: React.ReactNode;
|
|
33
34
|
onItemClick?: (isClickable: boolean) => void;
|
|
35
|
+
disabled?: boolean;
|
|
34
36
|
} & React.AnchorHTMLAttributes<HTMLAnchorElement>): import("react/jsx-runtime").JSX.Element;
|
|
35
37
|
};
|
|
36
38
|
export { DataTableDropdown };
|
|
@@ -26,14 +26,16 @@ declare const Dropdown: {
|
|
|
26
26
|
children: React.ReactNode;
|
|
27
27
|
}): import("react/jsx-runtime").JSX.Element;
|
|
28
28
|
Divider(): import("react/jsx-runtime").JSX.Element;
|
|
29
|
-
Item({ children, onClick, onItemClick, ...props }: {
|
|
29
|
+
Item({ children, onClick, onItemClick, disabled, ...props }: {
|
|
30
30
|
children: React.ReactNode;
|
|
31
31
|
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
|
|
32
32
|
onItemClick?: (isClickable: boolean) => void;
|
|
33
|
+
disabled?: boolean;
|
|
33
34
|
} & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
34
|
-
Link({ children, onItemClick, ...props }: {
|
|
35
|
+
Link({ children, onItemClick, disabled, ...props }: {
|
|
35
36
|
children: React.ReactNode;
|
|
36
37
|
onItemClick?: (isClickable: boolean) => void;
|
|
38
|
+
disabled?: boolean;
|
|
37
39
|
} & React.AnchorHTMLAttributes<HTMLAnchorElement>): import("react/jsx-runtime").JSX.Element;
|
|
38
40
|
};
|
|
39
41
|
export { Dropdown };
|