@mirantes-micro/foundation-design-system 0.0.99 → 1.0.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/index.d.ts +2 -1
- package/dist/index.js +9 -9
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -302,6 +302,7 @@ interface IDropdownProps {
|
|
|
302
302
|
itemClassName?: string;
|
|
303
303
|
itemHoverClassName?: string;
|
|
304
304
|
animate?: boolean;
|
|
305
|
+
enableSearch?: boolean;
|
|
305
306
|
}
|
|
306
307
|
interface IDropdownOption {
|
|
307
308
|
id: string;
|
|
@@ -310,6 +311,6 @@ interface IDropdownOption {
|
|
|
310
311
|
icon?: React.ReactNode;
|
|
311
312
|
}
|
|
312
313
|
|
|
313
|
-
declare function CustomDropdown({ trigger, options, onSelect, className, itemClassName, itemHoverClassName, animate, }: IDropdownProps): React__default.JSX.Element;
|
|
314
|
+
declare function CustomDropdown({ trigger, options, onSelect, className, itemClassName, itemHoverClassName, animate, enableSearch, }: IDropdownProps): React__default.JSX.Element;
|
|
314
315
|
|
|
315
316
|
export { AddressAutocompleteInput, BaseInput, Button, CheckBoxInput, CountryDisplay, CountryInput, CustomDateInput, CustomDrawer, CustomDropdown, CustomSelectInput, DateInput, GradientModal, Header, MirantesFoundationProvider, RadioButtonInput, SalaryInput, Calendar as ScheduleCalendar, Spinner, WorkspacePanel, closeLogoutChannel, getInitials, joinUrlWithPathAndQuery, onLogout, stringToObj, useMirantesFoundation };
|