@mirantes-micro/foundation-design-system 1.0.70 → 1.0.72
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 +26 -1
- package/dist/index.js +103 -74
- package/package.json +130 -129
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import * as React$1 from 'react';
|
|
|
2
2
|
import React__default, { ReactNode, ChangeEvent, KeyboardEvent } from 'react';
|
|
3
3
|
import { QueryClient } from '@tanstack/react-query';
|
|
4
4
|
import { AxiosInstance } from 'axios';
|
|
5
|
+
import * as zustand from 'zustand';
|
|
5
6
|
|
|
6
7
|
declare function Spinner({ className }: {
|
|
7
8
|
className?: string;
|
|
@@ -614,4 +615,28 @@ declare const designSystemPreset: {
|
|
|
614
615
|
|
|
615
616
|
declare function ChatViewDesktopPage(): React__default.JSX.Element;
|
|
616
617
|
|
|
617
|
-
|
|
618
|
+
interface JobTriggerState {
|
|
619
|
+
isJobOpen: boolean;
|
|
620
|
+
openJob: () => void;
|
|
621
|
+
closeJob: () => void;
|
|
622
|
+
toggleJob: () => void;
|
|
623
|
+
}
|
|
624
|
+
declare const useJobTriggerStore: zustand.UseBoundStore<zustand.StoreApi<JobTriggerState>>;
|
|
625
|
+
|
|
626
|
+
interface CandidaciesTriggerState {
|
|
627
|
+
isCandidaciesOpen: boolean;
|
|
628
|
+
openCandidacies: () => void;
|
|
629
|
+
closeCandidacies: () => void;
|
|
630
|
+
toggleCandidacies: () => void;
|
|
631
|
+
}
|
|
632
|
+
declare const useCandidaciesTriggerStore: zustand.UseBoundStore<zustand.StoreApi<CandidaciesTriggerState>>;
|
|
633
|
+
|
|
634
|
+
interface CommunityTriggerState {
|
|
635
|
+
isCommunitiesOpen: boolean;
|
|
636
|
+
openCommunity: () => void;
|
|
637
|
+
closeCommunity: () => void;
|
|
638
|
+
toggleCommunity: () => void;
|
|
639
|
+
}
|
|
640
|
+
declare const useCommunityTriggerStore: zustand.UseBoundStore<zustand.StoreApi<CommunityTriggerState>>;
|
|
641
|
+
|
|
642
|
+
export { AddressAutocompleteInput, BaseInput, Button, ChatView, ChatViewDesktopPage, CheckBoxInput, ContactsModal, CountryDisplay, CountryInput, CustomDateInput, CustomDrawer, CustomDropdown, CustomSelectInput, DateInput, GradientModal, Header, MirantesButton, MirantesFoundationProvider, RadioButtonInput, SalaryInput, Calendar as ScheduleCalendar, Spinner, WorkspacePanel, clearSettingsCookie, closeLogoutChannel, designSystemPreset, getInitials, getSettingsFromCookie, joinUrlWithPathAndQuery, onLogout, stringToObj, useApiGetPage, useCandidaciesTriggerStore, useCommunityTriggerStore, useJobTriggerStore, useLoadSettings, useMirantesFoundation, useSetChatVisibility };
|