@mirantes-micro/foundation-design-system 1.1.99 → 1.1.100
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 +9 -1
- package/dist/index.js +63 -63
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -745,4 +745,12 @@ interface ExtendedDrawerProps extends IResponsiveDrawerProps {
|
|
|
745
745
|
}
|
|
746
746
|
declare function ResponsiveDrawer({ isOpen, onClose, title, header, footer, children, className, swipeable, }: ExtendedDrawerProps): React$1.JSX.Element;
|
|
747
747
|
|
|
748
|
-
|
|
748
|
+
type OportunityType = "jobs" | "candidancies" | null;
|
|
749
|
+
interface OportunitiesState {
|
|
750
|
+
openType: OportunityType;
|
|
751
|
+
setOpenType: (type: OportunityType) => void;
|
|
752
|
+
reset: () => void;
|
|
753
|
+
}
|
|
754
|
+
declare const useOportunitiesStore: zustand.UseBoundStore<zustand.StoreApi<OportunitiesState>>;
|
|
755
|
+
|
|
756
|
+
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, useOportunitiesStore, useSetChatVisibility };
|