@mirantes-micro/foundation-design-system 1.0.18 → 1.0.20
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 +29 -1
- package/dist/index.js +66 -39
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -376,4 +376,32 @@ declare const clearSettingsCookie: (cookieName: string, options: {
|
|
|
376
376
|
}) => void;
|
|
377
377
|
declare const useLoadSettings: () => Settings | null;
|
|
378
378
|
|
|
379
|
-
|
|
379
|
+
interface IPage {
|
|
380
|
+
id?: string;
|
|
381
|
+
name?: string;
|
|
382
|
+
slug?: string;
|
|
383
|
+
logo?: string;
|
|
384
|
+
sector?: string;
|
|
385
|
+
sectorId?: string;
|
|
386
|
+
description?: string;
|
|
387
|
+
aboutUs?: string;
|
|
388
|
+
site?: string;
|
|
389
|
+
organizationSize?: string;
|
|
390
|
+
organizationType?: string;
|
|
391
|
+
pageType?: string;
|
|
392
|
+
isAcademic?: boolean;
|
|
393
|
+
foundedYear?: number;
|
|
394
|
+
address?: {
|
|
395
|
+
city?: string;
|
|
396
|
+
country?: string;
|
|
397
|
+
address?: string;
|
|
398
|
+
};
|
|
399
|
+
phoneNumber?: string;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
declare const useApiGetPage: (slug?: string) => {
|
|
403
|
+
page: IPage | null | undefined;
|
|
404
|
+
isGettingPage: boolean;
|
|
405
|
+
};
|
|
406
|
+
|
|
407
|
+
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, useApiGetPage, useLoadSettings, useMirantesFoundation };
|