@mirantes-micro/foundation-design-system 1.0.11 → 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 +7 -5
- package/dist/index.js +25 -25
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -367,9 +367,11 @@ type Settings = {
|
|
|
367
367
|
};
|
|
368
368
|
profile: IUserVisibilitySettings;
|
|
369
369
|
};
|
|
370
|
-
declare const
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
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;
|
|
374
376
|
|
|
375
|
-
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 };
|