blue-react 8.7.1 → 8.7.2
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/style.scss
CHANGED
|
@@ -95,6 +95,14 @@ export interface MenuItemProps {
|
|
|
95
95
|
*/
|
|
96
96
|
draggable?: boolean;
|
|
97
97
|
"data-tooltip"?: string;
|
|
98
|
+
/**
|
|
99
|
+
* Specifies whether an element is disabled or not.
|
|
100
|
+
*/
|
|
101
|
+
disabled?: boolean;
|
|
102
|
+
/**
|
|
103
|
+
* Specifies style of an element.
|
|
104
|
+
*/
|
|
105
|
+
style?: React.CSSProperties;
|
|
98
106
|
}
|
|
99
107
|
/**
|
|
100
108
|
* Link, button or custom component for Sidebar, Actions or ActionMenu
|