@goodhood-web/nebenan-base 4.3.0-development.5 → 4.3.0-development.7
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/index.d.ts +4 -3
- package/index.js +81 -81
- package/index.mjs +10376 -10286
- package/lib/InviteNeighbours/InviteNeighbours.d.ts +3 -0
- package/lib/InviteNeighbours/InviteNeighbours.types.d.ts +13 -0
- package/lib/InviteNeighbours/components/InviteInfo.d.ts +4 -0
- package/package.json +1 -1
- package/style.css +1 -1
package/index.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ import { default as ImageAttachment } from './lib/ImageAttachment/ImageAttachmen
|
|
|
37
37
|
import { default as ImageCropper } from './lib/ImageCropper/ImageCropper';
|
|
38
38
|
import { default as ImageGalleryTrigger } from './lib/ImageGalleryTrigger/ImageGalleryTrigger';
|
|
39
39
|
import { default as InviteModal } from './lib/InviteModal/InviteModal';
|
|
40
|
+
import { default as InviteNeighbours } from './lib/InviteNeighbours/InviteNeighbours';
|
|
40
41
|
import { default as LayoutLoadingSpinner } from './lib/LayoutLoadingSpinner/LayoutLoadingSpinner';
|
|
41
42
|
import { default as MainLayout } from './lib/MainLayout/MainLayout';
|
|
42
43
|
import { default as MarkdownRichText } from './lib/MarkdownRichText/MarkdownRichText';
|
|
@@ -57,11 +58,11 @@ import { default as ReactionTabList } from './lib/Reactions/ReactionTabList/Reac
|
|
|
57
58
|
import { default as ResponsiveModal } from './lib/ResponsiveModal/ResponsiveModal';
|
|
58
59
|
import { default as RichTextArea } from './lib/RichTextArea/RichTextArea';
|
|
59
60
|
import { default as ThankYouCard } from './lib/ThankYouCard/ThankYouCard';
|
|
60
|
-
export * from './lib/Forms';
|
|
61
61
|
export * from './lib/Feed/Feed/Feed.types';
|
|
62
|
-
export
|
|
62
|
+
export * from './lib/Forms';
|
|
63
63
|
export type { Prompt, PromptCardProps, PromptColor, } from './lib/PromptCard/PromptCard.types';
|
|
64
64
|
export { toCoreV3Format } from './lib/RichTextArea/RichTextArea.types';
|
|
65
65
|
export type { CoreV3PostInput, ImageFile, RichTextAreaValueType, } from './lib/RichTextArea/RichTextArea.types';
|
|
66
66
|
export { useImageUpload } from './lib/RichTextArea/useImageUpload';
|
|
67
|
-
export {
|
|
67
|
+
export { convertV2FeedObjectToV3Array, convertV2ToV3FeedItem, convertV2ToV3FeedItems, } from './lib/utils/convertV2ToV3Feed';
|
|
68
|
+
export { AccordionMenu, AttendeesModal, ChristmasGarland, ComparisonTable, ComplaintModal, ConfirmDialog, ContentCreator, ContentCreatorTrigger, DesktopLayout, DesktopNavbarSearchField, DesktopNavigationBar, DynamicScreen, EmojiPicker, EmojiSearch, Feed, FeedEmptyStateCard, FeedRouterProvider, Gallery, Grid, GridItem, HtmlContent, ImageAttachment, ImageCropper, ImageGalleryTrigger, InviteModal, InviteNeighbours, LayoutLoadingSpinner, LazyFeed, LinkAttachment, LoginForm, MainLayout, MarkdownRichText, MarketplaceAbTestProvider, MarketplaceAggregatorCard, MarketplaceDetailPage, MarketplaceFeedPage, MarketplaceHighlightVariant, MarketplaceImageCropper, MarketplaceItemCardless, MarketplaceMoreOptions, MenuLinkList, MobileHeaderBar, MobileLayout, ModalGallery, NPEAggregator, PasswordForgotten, PasswordReset, PointOfInterest, PostAuthor, PostInfo, Profile, ProfileControls, PromptCard, Quote, Reaction, ReactionPill, ReactionSelection, ReactionStack, ReactionTabList, Registration, ResponsiveModal, RichTextArea, ThankYouCard, useMarketplaceAbTest, };
|