@mirantes-micro/foundation-design-system 1.1.5 → 1.1.7
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 +18 -1
- package/dist/index.js +130 -139
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -713,4 +713,21 @@ declare function AnimatedModal({ isOpen, onClose, children, variant, className,
|
|
|
713
713
|
offsetTop?: number;
|
|
714
714
|
}): React__default.JSX.Element | null;
|
|
715
715
|
|
|
716
|
-
|
|
716
|
+
interface IResponsiveDrawerProps {
|
|
717
|
+
isOpen: boolean;
|
|
718
|
+
onClose: () => void;
|
|
719
|
+
header?: React$1.ReactNode;
|
|
720
|
+
footer?: React$1.ReactNode;
|
|
721
|
+
children: React$1.ReactNode;
|
|
722
|
+
className?: string;
|
|
723
|
+
side?: "right" | "left" | "bottom";
|
|
724
|
+
swipeable?: boolean;
|
|
725
|
+
swipeThreshold?: number;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
interface ExtendedDrawerProps extends IResponsiveDrawerProps {
|
|
729
|
+
title?: string;
|
|
730
|
+
}
|
|
731
|
+
declare function ResponsiveDrawer({ isOpen, onClose, title, header, footer, children, className, swipeable, }: ExtendedDrawerProps): React$1.JSX.Element;
|
|
732
|
+
|
|
733
|
+
export { AddressAutocompleteInput, AnimatedModal, BaseInput, Button, ChatView, ChatViewDesktopPage, CheckBoxInput, ContactsModal, CountryDisplay, CountryInput, CustomDateInput, CustomDrawer, CustomDropdown, CustomSelectInput, DateInput, GradientModal, Header, MessageButton, MirantesButton, MirantesFoundationProvider, RadioButtonInput, ResponsiveDrawer, SalaryInputWithButton, Calendar as ScheduleCalendar, Spinner, WorkspacePanel, clearSettingsCookie, closeLogoutChannel, designSystemPreset, getInitials, getSettingsFromCookie, joinUrlWithPathAndQuery, onLogout, stringToObj, useApiGetPage, useCandidaciesTriggerStore, useCommunityTriggerStore, useJobTriggerStore, useLoadSettings, useMirantesFoundation, useSetChatVisibility };
|