@goodhood-web/nebenan-base 4.1.0-development.25 → 4.1.0-development.27
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 +3 -2
- package/index.js +67 -67
- package/index.mjs +9489 -9305
- package/lib/ContentCreator/utils.d.ts +1 -1
- package/lib/ContentCreator/validationSchemas/commonSchemas.d.ts +1 -0
- package/lib/ContentCreator/validationSchemas/dynamicValidationSchema.d.ts +15 -15
- package/lib/ContentCreator/validationSchemas/eventSchema.d.ts +3 -3
- package/lib/ContentCreator/validationSchemas/marketplaceSchema.d.ts +3 -3
- package/lib/ContentCreator/validationSchemas/postSchema.d.ts +3 -3
- package/lib/ContentCreator/validationSchemas/recommendationSchema.d.ts +3 -3
- package/lib/ContentCreator/validationSchemas/searchSchema.d.ts +3 -3
- package/lib/MarketplaceImageCropper/MarketplaceImageCropper.d.ts +5 -0
- package/lib/MarketplaceImageCropper/MarketplaceImageCropper.types.d.ts +6 -0
- package/lib/MarketplaceImageCropper/components/ImageThumbnailGrid/ImageThumbnailGrid.d.ts +10 -0
- package/package.json +1 -1
- package/style.css +1 -1
package/index.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ import { default as ImageGalleryTrigger } from './lib/ImageGalleryTrigger/ImageG
|
|
|
35
35
|
import { default as LayoutLoadingSpinner } from './lib/LayoutLoadingSpinner/LayoutLoadingSpinner';
|
|
36
36
|
import { default as MainLayout } from './lib/MainLayout/MainLayout';
|
|
37
37
|
import { default as MarkdownRichText } from './lib/MarkdownRichText/MarkdownRichText';
|
|
38
|
+
import { default as MarketplaceImageCropper } from './lib/MarketplaceImageCropper/MarketplaceImageCropper';
|
|
38
39
|
import { default as MenuLinkList } from './lib/MenuLinkList/MenuLinkList';
|
|
39
40
|
import { default as MobileLayout } from './lib/MobileLayout/MobileLayout';
|
|
40
41
|
import { default as MobileHeaderBar } from './lib/MobileLayout/components/MobileHeaderBar/MobileHeaderBar';
|
|
@@ -51,7 +52,7 @@ import { default as ResponsiveModal } from './lib/ResponsiveModal/ResponsiveModa
|
|
|
51
52
|
import { default as RichTextArea } from './lib/RichTextArea/RichTextArea';
|
|
52
53
|
import { default as ThankYouCard } from './lib/ThankYouCard/ThankYouCard';
|
|
53
54
|
export * from './lib/Forms';
|
|
54
|
-
export type { RichTextAreaValueType, CoreV3PostInput, ImageFile, } from './lib/RichTextArea/RichTextArea.types';
|
|
55
55
|
export { toCoreV3Format } from './lib/RichTextArea/RichTextArea.types';
|
|
56
|
+
export type { CoreV3PostInput, ImageFile, RichTextAreaValueType, } from './lib/RichTextArea/RichTextArea.types';
|
|
56
57
|
export { useImageUpload } from './lib/RichTextArea/useImageUpload';
|
|
57
|
-
export { AccordionMenu,
|
|
58
|
+
export { AccordionMenu, ChristmasGarland, ComparisonTable, ComplaintModal, ConfirmDialog, ContentCreatorTrigger, DesktopLayout, DesktopNavbarSearchField, DesktopNavigationBar, DynamicScreen, EmojiPicker, EmojiSearch, FeedRouterProvider, Gallery, Grid, GridFeed, GridFeedAggregator, GridItem, HtmlContent, ImageAttachment, ImageCropper, ImageGalleryTrigger, LayoutLoadingSpinner, LinkAttachment, LoginForm, MainLayout, MarkdownRichText, MarketplaceAggregatorCard, MarketplaceDetailPage, MarketplaceImageCropper, MarketplaceItemCardless, MarketplaceMoreOptions, MenuLinkList, MobileHeaderBar, MobileLayout, ModalGallery, NPEAggregator, PasswordForgotten, PasswordReset, PointOfInterest, PostAuthor, PostInfo, Profile, ProfileControls, Quote, Reaction, ReactionPill, ReactionSelection, ReactionStack, ReactionTabList, Registration, ResponsiveModal, RichTextArea, ThankYouCard, ContentCreator, };
|