@mirantes-micro/foundation-design-system 1.0.12 → 1.0.13

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 CHANGED
@@ -367,10 +367,11 @@ type Settings = {
367
367
  };
368
368
  profile: IUserVisibilitySettings;
369
369
  };
370
- declare const useLoadSettings: () => {
371
- getSettings: () => Settings | null;
372
- clearSettings: () => void;
373
- isLoading: boolean;
374
- };
370
+ declare const getSettingsFromCookie: (cookieName: string) => Settings | null;
371
+ declare const clearSettingsCookie: (cookieName: string, options: {
372
+ domain: string;
373
+ isDev: boolean;
374
+ }) => void;
375
+ declare const useLoadSettings: () => void;
375
376
 
376
- export { AddressAutocompleteInput, BaseInput, Button, CheckBoxInput, ContactsModal, CountryDisplay, CountryInput, CustomDateInput, CustomDrawer, CustomDropdown, CustomSelectInput, DateInput, GradientModal, Header, MirantesFoundationProvider, RadioButtonInput, SalaryInput, Calendar as ScheduleCalendar, Spinner, WorkspacePanel, closeLogoutChannel, getInitials, joinUrlWithPathAndQuery, onLogout, stringToObj, useLoadSettings, useMirantesFoundation };
377
+ export { AddressAutocompleteInput, BaseInput, Button, CheckBoxInput, ContactsModal, CountryDisplay, CountryInput, CustomDateInput, CustomDrawer, CustomDropdown, CustomSelectInput, DateInput, GradientModal, Header, MirantesFoundationProvider, RadioButtonInput, SalaryInput, Calendar as ScheduleCalendar, Spinner, WorkspacePanel, clearSettingsCookie, closeLogoutChannel, getInitials, getSettingsFromCookie, joinUrlWithPathAndQuery, onLogout, stringToObj, useLoadSettings, useMirantesFoundation };