@mirantes-micro/foundation-design-system 1.2.107 → 1.2.110
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 +17 -3
- package/dist/index.js +153 -153
- package/package.json +196 -196
package/dist/index.d.ts
CHANGED
|
@@ -797,13 +797,13 @@ interface AutoDownloadBannerProps {
|
|
|
797
797
|
}
|
|
798
798
|
declare const AutoDownloadBanner: React__default.FC<AutoDownloadBannerProps>;
|
|
799
799
|
|
|
800
|
-
interface ModalState {
|
|
800
|
+
interface ModalState$1 {
|
|
801
801
|
isDownloadModalOpen: boolean;
|
|
802
802
|
openDownloadModal: () => void;
|
|
803
803
|
closeDownloadModal: () => void;
|
|
804
804
|
toggleDownloadModal: () => void;
|
|
805
805
|
}
|
|
806
|
-
declare const useModalStore: zustand.UseBoundStore<zustand.StoreApi<ModalState>>;
|
|
806
|
+
declare const useModalStore: zustand.UseBoundStore<zustand.StoreApi<ModalState$1>>;
|
|
807
807
|
|
|
808
808
|
interface BannerConfig {
|
|
809
809
|
/** Número máximo de vezes que o banner pode ser mostrado (padrão: 5) */
|
|
@@ -1666,6 +1666,20 @@ interface ArticleViewerProps {
|
|
|
1666
1666
|
}
|
|
1667
1667
|
declare function ArticleViewer({ content }: ArticleViewerProps): React__default.JSX.Element;
|
|
1668
1668
|
|
|
1669
|
+
type ModalState = {
|
|
1670
|
+
isOpen: boolean;
|
|
1671
|
+
modalId: string | null;
|
|
1672
|
+
openModal: () => void;
|
|
1673
|
+
closeModal: () => void;
|
|
1674
|
+
toggleModal: () => void;
|
|
1675
|
+
};
|
|
1676
|
+
declare const useModalArticleStore: zustand.UseBoundStore<zustand.StoreApi<ModalState>>;
|
|
1677
|
+
|
|
1678
|
+
interface CreatePostModalProps {
|
|
1679
|
+
inline?: boolean;
|
|
1680
|
+
}
|
|
1681
|
+
declare function CreatePostModal({ inline }: CreatePostModalProps): React__default.JSX.Element;
|
|
1682
|
+
|
|
1669
1683
|
interface SavedItemsStoreProps {
|
|
1670
1684
|
isOpen: boolean;
|
|
1671
1685
|
openModal: () => void;
|
|
@@ -1674,4 +1688,4 @@ interface SavedItemsStoreProps {
|
|
|
1674
1688
|
}
|
|
1675
1689
|
declare const useSavedItemsStore: zustand.UseBoundStore<zustand.StoreApi<SavedItemsStoreProps>>;
|
|
1676
1690
|
|
|
1677
|
-
export { ActivateAccountModal, AddRating, AddressAutocompleteInput, AnimatedModal, ArticleContent, ArticleViewer, AutoDownloadBanner, AvatarRatingBadge, BaseInput, Button, ChatContacts, ChatListWrapper, ChatView, ChatViewDesktopPage, CheckBoxInput, ContactsModal, ControlButtons, CountryDisplay, CountryInput, CreatePostCard, CustomDateInput, CustomDrawer, CustomDropdown, CustomSelectInput, DateInput, DownloadMobileVersionBanner, DownloadModalTrigger, GradientModal, Header, MessageButton, MessagesButtonFromPage, MirantesButton, MirantesFoundationProvider, NoRecruitmentResponsiveIlustration, PageFloatFooter, PagesFeedTrigger, PdfFooter, PdfFullscreenView, PdfReader, PdfReaderHeader, PostCardArticle, ProgressBar, RadioButtonInput, RatingReviewsList, RatingUserCard, RatingsCard, RatingsSummary, RattingSuggestionCard, ReactPostButton, ResponsiveDrawer, SalaryInputWithButton, Calendar as ScheduleCalendar, SharePostModal, ShareProfile, ShareProfileButton, ShareProfileModal, Spinner, WorkspacePanel, clearSettingsCookie, closeLogoutChannel, getInitials, getSettingsFromCookie, joinUrlWithPathAndQuery, onLogout, stringToObj, useApiCheckRater, useApiGetPage, useArticleNavigation, useArticleStore, useAssetVersions, useBestAssetVersion, useCandidaciesTriggerStore, useCommunityTriggerStore, useJobTriggerStore, useLoadSettings, useMessageAppStore, useMirantesFoundation, useModalStore, useOportunitiesStore, usePeriodicDownloadBanner, useRestorePendingChat, useSavedItemsStore, useSetChatVisibility, useSignedUrl, useUploadAsset, useUploadAssetsBulk };
|
|
1691
|
+
export { ActivateAccountModal, AddRating, AddressAutocompleteInput, AnimatedModal, ArticleContent, ArticleViewer, AutoDownloadBanner, AvatarRatingBadge, BaseInput, Button, ChatContacts, ChatListWrapper, ChatView, ChatViewDesktopPage, CheckBoxInput, ContactsModal, ControlButtons, CountryDisplay, CountryInput, CreatePostCard, CreatePostModal, CustomDateInput, CustomDrawer, CustomDropdown, CustomSelectInput, DateInput, DownloadMobileVersionBanner, DownloadModalTrigger, GradientModal, Header, MessageButton, MessagesButtonFromPage, MirantesButton, MirantesFoundationProvider, NoRecruitmentResponsiveIlustration, PageFloatFooter, PagesFeedTrigger, PdfFooter, PdfFullscreenView, PdfReader, PdfReaderHeader, PostCardArticle, ProgressBar, RadioButtonInput, RatingReviewsList, RatingUserCard, RatingsCard, RatingsSummary, RattingSuggestionCard, ReactPostButton, ResponsiveDrawer, SalaryInputWithButton, Calendar as ScheduleCalendar, SharePostModal, ShareProfile, ShareProfileButton, ShareProfileModal, Spinner, WorkspacePanel, clearSettingsCookie, closeLogoutChannel, getInitials, getSettingsFromCookie, joinUrlWithPathAndQuery, onLogout, stringToObj, useApiCheckRater, useApiGetPage, useArticleNavigation, useArticleStore, useAssetVersions, useBestAssetVersion, useCandidaciesTriggerStore, useCommunityTriggerStore, useJobTriggerStore, useLoadSettings, useMessageAppStore, useMirantesFoundation, useModalArticleStore, useModalStore, useOportunitiesStore, usePeriodicDownloadBanner, useRestorePendingChat, useSavedItemsStore, useSetChatVisibility, useSignedUrl, useUploadAsset, useUploadAssetsBulk };
|