@goodhood-web/nebenan-base 2.1.0-development.1 → 2.1.0-development.11
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 +2 -1
- package/index.js +56 -30
- package/index.mjs +11772 -7708
- package/lib/DesktopLayoutTwoColumn/DesktopLayoutTwoColumn.d.ts +1 -1
- package/lib/DesktopLayoutTwoColumn/DesktopLayoutTwoColumn.types.d.ts +1 -0
- package/lib/MobileLayout/MobileLayout.d.ts +1 -1
- package/lib/MobileLayout/MobileLayout.types.d.ts +1 -0
- package/lib/NPEAggregator/NPEAggregator.d.ts +12 -0
- package/lib/NPEAggregator/NPEAggregator.example.d.ts +2 -0
- package/lib/NPEAggregator/NPEAggregator.types.d.ts +59 -0
- package/lib/NPEAggregator/NPEAggregatorCardV1/NPEAggregatorCardV1.d.ts +2 -0
- package/lib/NPEAggregator/NPEAggregatorCardV1/types.d.ts +2 -0
- package/lib/NPEAggregator/NPEAggregatorCardV2/NPEAggregatorCardV2.d.ts +2 -0
- package/lib/NPEAggregator/NPEAggregatorCardV2/types.d.ts +2 -0
- package/lib/NPEAggregator/NPEAggregatorCardV3/NPEAggregatorCardV3.d.ts +2 -0
- package/lib/NPEAggregator/NPEAggregatorCardV3/types.d.ts +2 -0
- package/lib/NPEAggregator/NPEAggregatorCardV4/NPEAggregatorCardV4.d.ts +2 -0
- package/lib/NPEAggregator/NPEAggregatorCardV4/types.d.ts +2 -0
- package/lib/Reactions/ReactionStack/components/ReactionItem/ReactionItem.d.ts +1 -1
- package/lib/utils/breakpoints.d.ts +4 -0
- package/lib/utils/index.d.ts +2 -1
- package/package.json +1 -1
- package/style.css +1 -1
package/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ import { default as MarketplaceBody } from './lib/MarketplaceBody/MarketplaceBod
|
|
|
16
16
|
import { default as MenuLinkList } from './lib/MenuLinkList/MenuLinkList';
|
|
17
17
|
import { default as MobileLayout } from './lib/MobileLayout/MobileLayout';
|
|
18
18
|
import { default as MobileHeaderBar } from './lib/MobileLayout/components/MobileHeaderBar/MobileHeaderBar';
|
|
19
|
+
import { default as NPEAggregator } from './lib/NPEAggregator/NPEAggregator';
|
|
19
20
|
import { default as PointOfInterest } from './lib/PointOfInterest/PointOfInterest';
|
|
20
21
|
import { default as PostAuthor } from './lib/PostAuthor/PostAuthor';
|
|
21
22
|
import { default as Profile } from './lib/Profile/Profile';
|
|
@@ -24,4 +25,4 @@ import { default as ReactionSelection } from './lib/Reactions/ReactionSelection/
|
|
|
24
25
|
import { Reaction, ReactionPill, ReactionStack } from './lib/Reactions/ReactionStack';
|
|
25
26
|
import { default as ReactionTabList } from './lib/Reactions/ReactionTabList/ReactionTabList';
|
|
26
27
|
import { default as ResponsiveModal } from './lib/ResponsiveModal/ResponsiveModal';
|
|
27
|
-
export { AccordionMenu, ComparisonTable, ComplaintModal, ConfirmDialog, ContentCreatorTrigger, DesktopLayout, DesktopNavbarSearchField, DesktopNavigationBar, EmojiPicker, EmojiSearch, ImageGalleryTrigger, LayoutLoadingSpinner, MainLayout, MarketplaceBody, MarketplaceAggregatorCard, MenuLinkList, MobileHeaderBar, MobileLayout, PointOfInterest, PostAuthor, Profile, Reaction, ReactionPill, ReactionSelection, ReactionStack, ReactionTabList, ResponsiveModal, ProfileControls, };
|
|
28
|
+
export { AccordionMenu, ComparisonTable, ComplaintModal, ConfirmDialog, ContentCreatorTrigger, DesktopLayout, DesktopNavbarSearchField, DesktopNavigationBar, EmojiPicker, EmojiSearch, ImageGalleryTrigger, LayoutLoadingSpinner, MainLayout, MarketplaceBody, MarketplaceAggregatorCard, NPEAggregator, MenuLinkList, MobileHeaderBar, MobileLayout, PointOfInterest, PostAuthor, Profile, Reaction, ReactionPill, ReactionSelection, ReactionStack, ReactionTabList, ResponsiveModal, ProfileControls, };
|