@mirantes-micro/foundation-design-system 1.2.49 → 1.2.50
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 +21 -3
- package/dist/index.js +90 -197
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -710,12 +710,30 @@ declare function AvatarRatingBadge({ name, asPage, src, rating }: AvatarRatingBa
|
|
|
710
710
|
|
|
711
711
|
type AddRatingProps = {
|
|
712
712
|
enableTitle?: boolean;
|
|
713
|
-
variantStars?: "large" | "small";
|
|
713
|
+
variantStars?: "large" | "medium" | "small";
|
|
714
|
+
starSize?: {
|
|
715
|
+
width: number;
|
|
716
|
+
height: number;
|
|
717
|
+
};
|
|
714
718
|
forAPage?: boolean;
|
|
715
719
|
receiverPageId?: string;
|
|
716
720
|
receiverUserId?: string;
|
|
717
721
|
className?: string;
|
|
718
722
|
};
|
|
719
|
-
declare function AddRating({ enableTitle, variantStars,
|
|
723
|
+
declare function AddRating({ enableTitle, variantStars, starSize, // <-- RECEBIDO AQUI
|
|
724
|
+
forAPage, receiverPageId, receiverUserId, className, }: AddRatingProps): React__default.JSX.Element;
|
|
725
|
+
|
|
726
|
+
interface PageFloatFooterProps {
|
|
727
|
+
/**
|
|
728
|
+
* Callback chamado quando o botão de adicionar é clicado.
|
|
729
|
+
* Se fornecido, será usado em vez do comportamento padrão.
|
|
730
|
+
*/
|
|
731
|
+
onAddClick?: () => void;
|
|
732
|
+
}
|
|
733
|
+
declare function PageFloatFooter({ onAddClick }: PageFloatFooterProps): React__default.JSX.Element;
|
|
734
|
+
|
|
735
|
+
declare const NoRecruitmentResponsiveIlustration: ({ className, }: {
|
|
736
|
+
className?: string;
|
|
737
|
+
}) => React__default.JSX.Element;
|
|
720
738
|
|
|
721
|
-
export { AddRating, AddressAutocompleteInput, AnimatedModal, AutoDownloadBanner, AvatarRatingBadge, BaseInput, Button, ChatContacts, ChatView, ChatViewDesktopPage, CheckBoxInput, ContactsModal, CountryDisplay, CountryInput, CustomDateInput, CustomDrawer, CustomDropdown, CustomSelectInput, DateInput, DownloadMobileVersionBanner, DownloadModalTrigger, GradientModal, Header, MessageButton, MirantesButton, MirantesFoundationProvider, PagesFeedTrigger, RadioButtonInput, RatingsCard, RattingSuggestionCard, ResponsiveDrawer, SalaryInputWithButton, Calendar as ScheduleCalendar, ShareProfile, ShareProfileButton, ShareProfileModal, Spinner, WorkspacePanel, clearSettingsCookie, closeLogoutChannel, getInitials, getSettingsFromCookie, joinUrlWithPathAndQuery, onLogout, stringToObj, useApiGetPage, useCandidaciesTriggerStore, useCommunityTriggerStore, useJobTriggerStore, useLoadSettings, useMirantesFoundation, useModalStore, useOportunitiesStore, usePeriodicDownloadBanner, useSetChatVisibility };
|
|
739
|
+
export { AddRating, AddressAutocompleteInput, AnimatedModal, AutoDownloadBanner, AvatarRatingBadge, BaseInput, Button, ChatContacts, ChatView, ChatViewDesktopPage, CheckBoxInput, ContactsModal, CountryDisplay, CountryInput, CustomDateInput, CustomDrawer, CustomDropdown, CustomSelectInput, DateInput, DownloadMobileVersionBanner, DownloadModalTrigger, GradientModal, Header, MessageButton, MirantesButton, MirantesFoundationProvider, NoRecruitmentResponsiveIlustration, PageFloatFooter, PagesFeedTrigger, RadioButtonInput, RatingsCard, RattingSuggestionCard, ResponsiveDrawer, SalaryInputWithButton, Calendar as ScheduleCalendar, ShareProfile, ShareProfileButton, ShareProfileModal, Spinner, WorkspacePanel, clearSettingsCookie, closeLogoutChannel, getInitials, getSettingsFromCookie, joinUrlWithPathAndQuery, onLogout, stringToObj, useApiGetPage, useCandidaciesTriggerStore, useCommunityTriggerStore, useJobTriggerStore, useLoadSettings, useMirantesFoundation, useModalStore, useOportunitiesStore, usePeriodicDownloadBanner, useSetChatVisibility };
|