@goodhood-web/nebenan-base 3.4.0-development.5 → 3.4.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 +5 -1
- package/index.js +82 -72
- package/index.mjs +11487 -8984
- package/lib/Feed/FeedItem/Marketplace/MarketplaceDetailPage/MarketplaceDetailPage.types.d.ts +2 -2
- package/lib/Gallery/Gallery.d.ts +3 -0
- package/lib/Gallery/Gallery.types.d.ts +15 -0
- package/lib/ImageAttachment/ImageAttachment.d.ts +3 -0
- package/lib/ImageAttachment/ImageAttachment.types.d.ts +6 -0
- package/lib/ModalGallery/ModalGallery.d.ts +3 -0
- package/lib/ModalGallery/ModalGallery.types.d.ts +9 -0
- package/lib/ModalGallery/utils.d.ts +28 -0
- package/package.json +1 -1
- package/style.css +9 -1
- /package/lib/{ImagePicker → ImageCropper}/ImageCropper.d.ts +0 -0
- /package/lib/{ImagePicker → ImageCropper}/ImageCropper.types.d.ts +0 -0
- /package/lib/{ImagePicker → ImageCropper}/hooks/useCropper.d.ts +0 -0
- /package/lib/{ImagePicker → ImageCropper}/hooks/useImageLoader.d.ts +0 -0
- /package/lib/{ImagePicker → ImageCropper}/util.d.ts +0 -0
package/index.d.ts
CHANGED
|
@@ -20,9 +20,12 @@ import { default as PostInfo } from './lib/Feed/FeedItem/PostInfo/PostInfo';
|
|
|
20
20
|
import { default as FeedRouterProvider } from './lib/Feed/FeedRouterProvider/FeedRouterProvider';
|
|
21
21
|
import { default as GridFeed } from './lib/Feed/GridFeed/GridFeed';
|
|
22
22
|
import { default as GridFeedAggregator } from './lib/Feed/GridFeed/GridFeedAggregator/GridFeedAggregator';
|
|
23
|
+
import { default as Gallery } from './lib/Gallery/Gallery';
|
|
23
24
|
import { default as Grid } from './lib/Grids/Grid/Grid';
|
|
24
25
|
import { default as GridItem } from './lib/Grids/Grid/GridItem/GridItem';
|
|
25
26
|
import { default as HtmlContent } from './lib/HtmlContent/HtmlContent';
|
|
27
|
+
import { default as ImageAttachment } from './lib/ImageAttachment/ImageAttachment';
|
|
28
|
+
import { default as ImageCropper } from './lib/ImageCropper/ImageCropper';
|
|
26
29
|
import { default as ImageGalleryTrigger } from './lib/ImageGalleryTrigger/ImageGalleryTrigger';
|
|
27
30
|
import { default as LayoutLoadingSpinner } from './lib/LayoutLoadingSpinner/LayoutLoadingSpinner';
|
|
28
31
|
import { default as MainLayout } from './lib/MainLayout/MainLayout';
|
|
@@ -30,6 +33,7 @@ import { default as MarkdownRichText } from './lib/MarkdownRichText/MarkdownRich
|
|
|
30
33
|
import { default as MenuLinkList } from './lib/MenuLinkList/MenuLinkList';
|
|
31
34
|
import { default as MobileLayout } from './lib/MobileLayout/MobileLayout';
|
|
32
35
|
import { default as MobileHeaderBar } from './lib/MobileLayout/components/MobileHeaderBar/MobileHeaderBar';
|
|
36
|
+
import { default as ModalGallery } from './lib/ModalGallery/ModalGallery';
|
|
33
37
|
import { default as NPEAggregator } from './lib/NPEAggregator/NPEAggregator';
|
|
34
38
|
import { default as PointOfInterest } from './lib/PointOfInterest/PointOfInterest';
|
|
35
39
|
import { default as Profile } from './lib/Profile/Profile';
|
|
@@ -41,4 +45,4 @@ import { default as ReactionTabList } from './lib/Reactions/ReactionTabList/Reac
|
|
|
41
45
|
import { default as ResponsiveModal } from './lib/ResponsiveModal/ResponsiveModal';
|
|
42
46
|
import { default as ThankYouCard } from './lib/ThankYouCard/ThankYouCard';
|
|
43
47
|
export * from './lib/Forms';
|
|
44
|
-
export { AccordionMenu, AuthenticationForm, ChristmasGarland, ComparisonTable, ComplaintModal, ConfirmDialog, ContentCreatorTrigger, DesktopLayout, DesktopNavbarSearchField, DesktopNavigationBar, EmojiPicker, EmojiSearch, GridFeed, GridFeedAggregator, Grid, GridItem, HtmlContent, ImageGalleryTrigger, LayoutLoadingSpinner, LinkAttachment, MainLayout, MarkdownRichText, MarketplaceAggregatorCard, FeedRouterProvider, NPEAggregator, MarketplaceDetailPage, MarketplaceItemCardless, MarketplaceMoreOptions, MenuLinkList, MobileHeaderBar, MobileLayout, PointOfInterest, PostAuthor, PostInfo, Profile, ProfileControls, Quote, Reaction, ReactionPill, ReactionSelection, ReactionStack, ReactionTabList, ResponsiveModal, ThankYouCard, };
|
|
48
|
+
export { AccordionMenu, AuthenticationForm, ChristmasGarland, ComparisonTable, ComplaintModal, ConfirmDialog, ContentCreatorTrigger, DesktopLayout, DesktopNavbarSearchField, DesktopNavigationBar, EmojiPicker, EmojiSearch, ImageCropper, Gallery, GridFeed, GridFeedAggregator, Grid, GridItem, HtmlContent, ImageAttachment, ImageGalleryTrigger, LayoutLoadingSpinner, LinkAttachment, MainLayout, MarkdownRichText, MarketplaceAggregatorCard, ModalGallery, FeedRouterProvider, NPEAggregator, MarketplaceDetailPage, MarketplaceItemCardless, MarketplaceMoreOptions, MenuLinkList, MobileHeaderBar, MobileLayout, PointOfInterest, PostAuthor, PostInfo, Profile, ProfileControls, Quote, Reaction, ReactionPill, ReactionSelection, ReactionStack, ReactionTabList, ResponsiveModal, ThankYouCard, };
|