@skedulo/sked-ui 21.0.1 → 21.1.0
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.
|
@@ -4,7 +4,7 @@ interface IButtonDropdownProps extends IButtonDropdownCommon {
|
|
|
4
4
|
/**
|
|
5
5
|
* Text to display on the button
|
|
6
6
|
*/
|
|
7
|
-
label:
|
|
7
|
+
label: React.ReactNode;
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* The DropdownButton component displays/hides children as a dropdown when clicked. The Menu and MenuItem
|
|
@@ -56,6 +56,10 @@ export interface DatepickerProps {
|
|
|
56
56
|
* An Array of Date that will be highlighted
|
|
57
57
|
*/
|
|
58
58
|
highlightDates?: ReactDatePickerProps['highlightDates'];
|
|
59
|
+
/**
|
|
60
|
+
* Used to filter out dates that are not selectable
|
|
61
|
+
*/
|
|
62
|
+
filterDate?: ReactDatePickerProps['filterDate'];
|
|
59
63
|
/**
|
|
60
64
|
* A component that will override the default Input
|
|
61
65
|
*/
|