@goodhood-web/nebenan-base 1.9.0-development.47 → 1.9.0-development.49

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.
Files changed (62) hide show
  1. package/index.d.ts +0 -1
  2. package/index.js +24 -24
  3. package/index.mjs +854 -858
  4. package/lib/AccordionMenu/AccordionMenu.d.ts +0 -1
  5. package/lib/AccordionMenu/AccordionMenu.types.d.ts +0 -1
  6. package/lib/ComparisonTable/ComparisonTable.d.ts +0 -1
  7. package/lib/ComplaintModal/ComplaintModal.d.ts +0 -1
  8. package/lib/ConfirmDialog/ConfirmDialog.d.ts +0 -1
  9. package/lib/ConfirmDialog/ConfirmDialog.types.d.ts +0 -1
  10. package/lib/ContentCreatorTrigger/ContentCreatorTrigger.d.ts +0 -1
  11. package/lib/DesktopLayout/DesktopLayout.d.ts +0 -1
  12. package/lib/DesktopLayout/DesktopLayout.types.d.ts +0 -1
  13. package/lib/DesktopLayoutTwoColumn/DesktopLayoutTwoColumn.d.ts +0 -1
  14. package/lib/DesktopLayoutTwoColumn/DesktopLayoutTwoColumn.types.d.ts +0 -1
  15. package/lib/DesktopNavbarSearchField/DesktopNavbarSearchField.d.ts +0 -1
  16. package/lib/DesktopNavbarSearchField/DesktopNavbarSearchField.types.d.ts +0 -1
  17. package/lib/DesktopNavigationBar/DesktopNavigationBar.d.ts +0 -1
  18. package/lib/DesktopNavigationBar/DesktopNavigationBar.types.d.ts +0 -1
  19. package/lib/EmojiPicker/EmojiPicker.d.ts +0 -1
  20. package/lib/EmojiPicker/EmojiPicker.types.d.ts +0 -1
  21. package/lib/ImageGalleryTrigger/ImageGalleryTrigger.d.ts +0 -1
  22. package/lib/LayoutLoadingSpinner/assets/index.d.ts +0 -1
  23. package/lib/MainLayout/MainLayout.d.ts +0 -1
  24. package/lib/MainLayout/MainLayout.types.d.ts +0 -1
  25. package/lib/MarketplaceAggregatorCard/MarketplaceAggregatorCard.d.ts +0 -1
  26. package/lib/MarketplaceAggregatorCard/MarketplaceAggregatorCard.example.d.ts +0 -1
  27. package/lib/MarketplaceBody/MarketplaceBody.d.ts +0 -1
  28. package/lib/MarketplaceBody/MarketplaceBody.types.d.ts +0 -1
  29. package/lib/MenuLinkList/MenuLinkList.d.ts +0 -1
  30. package/lib/MenuLinkList/MenuLinkList.types.d.ts +0 -1
  31. package/lib/MobileLayout/MobileLayout.d.ts +0 -1
  32. package/lib/MobileLayout/MobileLayout.types.d.ts +0 -1
  33. package/lib/MobileLayout/components/MobileHeaderBar/MobileHeaderBar.d.ts +0 -1
  34. package/lib/MobileLayout/components/MobileHeaderBar/MobileHeaderBar.types.d.ts +0 -1
  35. package/lib/MobileLayout/utils/index.d.ts +0 -1
  36. package/lib/PointOfInterest/PointOfInterest.d.ts +0 -1
  37. package/lib/PointOfInterest/assets/index.d.ts +0 -1
  38. package/lib/PointOfInterest/components/POIPlaceholder.d.ts +0 -1
  39. package/lib/PostAuthor/PostAuthor.d.ts +0 -1
  40. package/lib/PostAuthor/PostAuthor.types.d.ts +0 -1
  41. package/lib/PostAuthor/Rating/Rating.d.ts +0 -1
  42. package/lib/Profile/Profile.d.ts +0 -1
  43. package/lib/ProfileControls/ProfileControls.d.ts +0 -1
  44. package/lib/ProfileControls/ProfileControls.types.d.ts +0 -1
  45. package/lib/ProfileControls/components/MoreMenu/MoreMenu.d.ts +0 -1
  46. package/lib/ProfileControls/components/PointOfInterestProfileTile/PointOfInterestProfileTile.d.ts +0 -1
  47. package/lib/ProfileControls/components/PointOfInterestProfileTile/PointOfInterestProfileTile.types.d.ts +0 -1
  48. package/lib/Reactions/ReactionSelection/ReactionSelection.d.ts +0 -1
  49. package/lib/Reactions/ReactionSelection/ReactionSelection.types.d.ts +0 -1
  50. package/lib/Reactions/ReactionStack/ReactionStack.d.ts +0 -1
  51. package/lib/Reactions/ReactionStack/ReactionStack.types.d.ts +0 -1
  52. package/lib/Reactions/ReactionStack/components/ReactionItem/ReactionItem.d.ts +0 -1
  53. package/lib/Reactions/ReactionStack/components/ReactionItem/ReactionItem.types.d.ts +0 -1
  54. package/lib/Reactions/ReactionStack/components/ReactionPill/ReactionPill.d.ts +0 -1
  55. package/lib/Reactions/ReactionStack/components/ReactionPill/ReactionPill.type.d.ts +0 -1
  56. package/lib/Reactions/ReactionTabList/ReactionTabList.d.ts +0 -1
  57. package/lib/Reactions/ReactionTabList/ReactionTabList.types.d.ts +0 -1
  58. package/lib/Reactions/utils.d.ts +0 -1
  59. package/lib/ResponsiveModal/ResponsiveModal.d.ts +0 -1
  60. package/lib/ResponsiveModal/ResponsiveModal.types.d.ts +0 -1
  61. package/package.json +1 -1
  62. package/style.css +1 -1
@@ -1,4 +1,3 @@
1
1
  import { AccordionMenuProps } from './AccordionMenu.types';
2
-
3
2
  declare const AccordionMenu: ({ children, id, isOpen, onClick, title, }: AccordionMenuProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default AccordionMenu;
@@ -1,5 +1,4 @@
1
1
  import { ReactNode } from 'react';
2
-
3
2
  export type AccordionMenuProps = {
4
3
  children: ReactNode;
5
4
  id: number | string;
@@ -1,4 +1,3 @@
1
1
  import { TableProps } from './ComparisonTable.types';
2
-
3
2
  declare const ComparisonTable: ({ header, list }: TableProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default ComparisonTable;
@@ -1,4 +1,3 @@
1
1
  import { ComplaintModalProps } from './ComplaintModal.types';
2
-
3
2
  declare const ComplaintModal: ({ handleModalClick, open, subjectId }: ComplaintModalProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default ComplaintModal;
@@ -1,4 +1,3 @@
1
1
  import { ConfirmDialogProps } from './ConfirmDialog.types';
2
-
3
2
  declare const ConfirmDialog: ({ cancelText, confirmText, content, handleCancel, handleConfirm, primaryCtaColor, title, }: ConfirmDialogProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default ConfirmDialog;
@@ -1,5 +1,4 @@
1
1
  import { ReactElement } from 'react';
2
-
3
2
  export interface ConfirmDialogProps {
4
3
  cancelText?: string;
5
4
  confirmText?: string;
@@ -1,4 +1,3 @@
1
1
  import { ContentCreatorTriggerProps } from './ContentCreatorTrigger.types';
2
-
3
2
  declare const ContentCreatorTrigger: ({ alt, ariaLabel, onClick, src, text, }: ContentCreatorTriggerProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default ContentCreatorTrigger;
@@ -1,4 +1,3 @@
1
1
  import { DesktopLayoutProps } from './DesktopLayout.types';
2
-
3
2
  declare const DesktopLayout: ({ children, left, navbar, right }: DesktopLayoutProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default DesktopLayout;
@@ -1,5 +1,4 @@
1
1
  import { ReactElement, ReactNode } from 'react';
2
-
3
2
  export interface DesktopLayoutProps {
4
3
  children: ReactNode;
5
4
  left?: ReactElement;
@@ -1,4 +1,3 @@
1
1
  import { DesktopLayoutTwoColumnProps } from './DesktopLayoutTwoColumn.types';
2
-
3
2
  declare const DesktopLayoutTwoColumn: ({ children, navbar, right, }: DesktopLayoutTwoColumnProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default DesktopLayoutTwoColumn;
@@ -1,5 +1,4 @@
1
1
  import { ReactElement, ReactNode } from 'react';
2
-
3
2
  export interface DesktopLayoutTwoColumnProps {
4
3
  children: ReactNode;
5
4
  navbar: ReactElement;
@@ -1,4 +1,3 @@
1
1
  import { DesktopNavbarSearchFieldProps } from './DesktopNavbarSearchField.types';
2
-
3
2
  declare const DesktopNavbarSearchField: ({ name, onSearchSubmit, placeholder, ref, }: DesktopNavbarSearchFieldProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default DesktopNavbarSearchField;
@@ -1,6 +1,5 @@
1
1
  import { UseInputParameters } from '@mui/base/useInput';
2
2
  import { ForwardedRef } from 'react';
3
-
4
3
  export interface DesktopNavbarSearchFieldProps extends UseInputParameters {
5
4
  className?: string;
6
5
  name: string;
@@ -1,4 +1,3 @@
1
1
  import { DesktopNavigationBarProps } from './DesktopNavigationBar.types';
2
-
3
2
  declare const DesktopNavigationBar: ({ left, right }: DesktopNavigationBarProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default DesktopNavigationBar;
@@ -1,5 +1,4 @@
1
1
  import { ReactNode } from 'react';
2
-
3
2
  export type DesktopNavigationBarProps = {
4
3
  left: ReactNode;
5
4
  right: ReactNode;
@@ -1,4 +1,3 @@
1
1
  import { EmojiPickerProps } from './EmojiPicker.types';
2
-
3
2
  declare const EmojiPicker: ({ children, className, onSelect }: EmojiPickerProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default EmojiPicker;
@@ -1,5 +1,4 @@
1
1
  import { MouseEvent, ReactElement } from 'react';
2
-
3
2
  interface ClickableElementProps {
4
3
  onClick: (event: MouseEvent<HTMLElement>) => void;
5
4
  }
@@ -1,4 +1,3 @@
1
1
  import { ImageGalleryTriggerProps } from './ImageGalleryTrigger.types';
2
-
3
2
  declare const ImageGalleryTrigger: ({ gallerySize, imageAlt, imageURL, onClick, }: ImageGalleryTriggerProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default ImageGalleryTrigger;
@@ -1,3 +1,2 @@
1
1
  import { default as HouseLogo } from './house_logo.svg?react';
2
-
3
2
  export { HouseLogo };
@@ -1,5 +1,4 @@
1
1
  import { PropsWithChildren } from 'react';
2
2
  import { MainLayoutProps } from './MainLayout.types';
3
-
4
3
  declare const MainLayout: ({ children, desktop, keepLoading, mobile, }: PropsWithChildren<MainLayoutProps>) => import("react/jsx-runtime").JSX.Element;
5
4
  export default MainLayout;
@@ -1,6 +1,5 @@
1
1
  import { DesktopLayoutTwoColumnProps } from '../DesktopLayoutTwoColumn/DesktopLayoutTwoColumn.types';
2
2
  import { MobileLayoutProps } from '../MobileLayout/MobileLayout.types';
3
-
4
3
  export interface MainLayoutProps {
5
4
  desktop: Omit<DesktopLayoutTwoColumnProps, 'children'>;
6
5
  keepLoading?: boolean;
@@ -1,3 +1,2 @@
1
1
  import { MarketplaceAggregatorCardTypes } from './MarketplaceAggregatorCard.types';
2
-
3
2
  export default function MarketplaceAggregatorCard({ category, children, className, linkLabel, onLinkClick, }: MarketplaceAggregatorCardTypes): import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,2 @@
1
1
  import { MarketplaceAggregatorCardTypes } from './MarketplaceAggregatorCard.types';
2
-
3
2
  export default function MarketplaceAggregatorCardExample({ category, linkLabel, onLinkClick, }: Omit<MarketplaceAggregatorCardTypes, 'children'>): import("react/jsx-runtime").JSX.Element;
@@ -1,4 +1,3 @@
1
1
  import { MarketplaceBodyTypes } from './MarketplaceBody.types';
2
-
3
2
  declare const MarketplaceBody: ({ author, authorMetadata, authorThumbnail, bookmarked, category, description, onBookmark, onContactSeller, onShare, price, timeStamp, title, }: MarketplaceBodyTypes) => import("react/jsx-runtime").JSX.Element;
4
3
  export default MarketplaceBody;
@@ -1,5 +1,4 @@
1
1
  import { default as PostAuthorProps } from '../PostAuthor/PostAuthor.types';
2
-
3
2
  export interface MarketplaceBodyTypes {
4
3
  author: PostAuthorProps['author'];
5
4
  authorMetadata: PostAuthorProps['metadata'];
@@ -1,4 +1,3 @@
1
1
  import { MenuLinkListProps } from './MenuLinkList.types';
2
-
3
2
  export declare function MenuLinkList({ className, items, type, }: MenuLinkListProps): import("react/jsx-runtime").JSX.Element;
4
3
  export default MenuLinkList;
@@ -1,5 +1,4 @@
1
1
  import { TypographyProps } from '../../../../ui/src/lib/Base/Typography/Typography.types';
2
-
3
2
  export interface MenuLinkListProps {
4
3
  className?: string;
5
4
  items: MenuLinkItem[];
@@ -1,4 +1,3 @@
1
1
  import { MobileLayoutProps } from './MobileLayout.types';
2
-
3
2
  declare const MobileLayout: ({ action, children, footer, header }: MobileLayoutProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default MobileLayout;
@@ -2,7 +2,6 @@ import { ReactElement, ReactNode } from 'react';
2
2
  import { IconButtonProps } from '../../../../ui/src/lib/Atoms/Buttons/IconButton/IconButton.types';
3
3
  import { NavBarProps } from '../../../../ui/src/lib/Molecules/Navigation/NavBar/NavBar.types';
4
4
  import { MobileHeaderBarProps } from './components/MobileHeaderBar/MobileHeaderBar.types';
5
-
6
5
  export interface MobileLayoutProps {
7
6
  action?: ReactElement<IconButtonProps>;
8
7
  children: ReactNode;
@@ -1,4 +1,3 @@
1
1
  import { MobileHeaderBarProps } from './MobileHeaderBar.types';
2
-
3
2
  declare const MobileHeaderBar: ({ as, className, left, right, title, type, }: MobileHeaderBarProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default MobileHeaderBar;
@@ -3,7 +3,6 @@ import { IconButtonProps } from '../../../../../../ui/src/lib/Atoms/Buttons/Icon
3
3
  import { NotificationBubbleProps } from '../../../../../../ui/src/lib/Atoms/NotificationBubble/NotificationBubble.types';
4
4
  import { IconProps } from '../../../../../../ui/src/lib/Base/Icon/Icon.types';
5
5
  import { TypographyProps } from '../../../../../../ui/src/lib/Base/Typography/Typography.types';
6
-
7
6
  export interface MobileHeaderBarProps {
8
7
  as?: Exclude<TypographyProps['as'], 'h1'>;
9
8
  className?: string;
@@ -1,4 +1,3 @@
1
1
  import { ElementType, ReactNode } from 'react';
2
-
3
2
  export declare const findAllowedElement: (elements: ReactNode, type: ElementType) => ReactNode;
4
3
  export declare const filterAllowedElements: (elements: ReactNode, allowedElements: ElementType[]) => ReactNode[];
@@ -1,4 +1,3 @@
1
1
  import { PointOfInterestProps } from './PointOfInterest.types';
2
-
3
2
  declare const PointOfInterest: ({ address, badgeType, heartComponent, hood, imageSrc, isBlocked, onClick, onRemove, placeholderType, subcategory, title, }: PointOfInterestProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default PointOfInterest;
@@ -1,5 +1,4 @@
1
1
  import { default as Business } from './business.svg?react';
2
2
  import { default as Organisation } from './organisation.svg?react';
3
3
  import { default as SpecialPlace } from './special_place.svg?react';
4
-
5
4
  export { SpecialPlace, Business, Organisation };
@@ -1,4 +1,3 @@
1
1
  import { POIPlaceholderProps } from './POIPlaceholder.types';
2
-
3
2
  declare const POIPlaceholder: ({ type }: POIPlaceholderProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default POIPlaceholder;
@@ -1,4 +1,3 @@
1
1
  import { default as PostAuthorProps } from './PostAuthor.types';
2
-
3
2
  declare const PostAuthor: ({ author, feedItemCategory, groupName, metadata, onMoreClick, rating, showMoreIcon, thumbnail, }: PostAuthorProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default PostAuthor;
@@ -5,7 +5,6 @@ import { IconButtonProps } from '../../../../ui/src/lib/Atoms/Buttons/IconButton
5
5
  import { ThumbnailCircularProps, ThumbnailSquareProps } from '../../../../ui/src/lib/Atoms/Content/Thumbnail/Thumbnail.type';
6
6
  import { default as ThumbnailWrapperProps } from '../../../../ui/src/lib/Atoms/Content/ThumbnailWrapper/ThumbnailWrapper.types';
7
7
  import { default as RatingProps } from './Rating/Rating.types';
8
-
9
8
  type ThumbnailProps = (ThumbnailCircularProps & {
10
9
  thumbnailType: 'thumbnailCircular';
11
10
  }) | (ThumbnailSquareProps & {
@@ -1,4 +1,3 @@
1
1
  import { default as RatingProps } from './Rating.types';
2
-
3
2
  declare const Rating: ({ ariaLabel, className, max, value }: RatingProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default Rating;
@@ -1,4 +1,3 @@
1
1
  import { ProfileProps } from './Profile.types';
2
-
3
2
  declare const Profile: ({ alt, link, name, onClick, src }: ProfileProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default Profile;
@@ -1,4 +1,3 @@
1
1
  import { ProfileControlsProps } from './ProfileControls.types';
2
-
3
2
  declare const ProfileControls: ({ moreMenuData, tiles, withoutMoreMenu, }: ProfileControlsProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default ProfileControls;
@@ -2,7 +2,6 @@ import { MutableRefObject } from 'react';
2
2
  import { DropdownOptionProps } from '../../../../ui/src/lib/Atoms/Dropdowns/DropdownOption/DropdownOption.types';
3
3
  import { OffsetType } from '../../../../ui/src/lib/Organisms/Modals/Popup/Popup.types';
4
4
  import { PointOfInterestProfileProps } from './components/PointOfInterestProfileTile/PointOfInterestProfileTile.types';
5
-
6
5
  export type ProfileControlsProps = {
7
6
  moreMenuData: {
8
7
  offset?: OffsetType;
@@ -1,5 +1,4 @@
1
1
  import { DropdownOptionProps } from '../../../../../../ui/src/lib/Atoms/Dropdowns/DropdownOption/DropdownOption.types';
2
-
3
2
  export type MoreMenuProps = {
4
3
  onClose: () => void;
5
4
  options: DropdownOptionProps[];
@@ -1,4 +1,3 @@
1
1
  import { PointOfInterestProfileProps } from './PointOfInterestProfileTile.types';
2
-
3
2
  declare const PointOfInterestProfileTile: ({ buttonLabel, icon, selected, ...props }: PointOfInterestProfileProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default PointOfInterestProfileTile;
@@ -1,6 +1,5 @@
1
1
  import { ButtonProps } from '../../../../../../ui/src/lib/Atoms/Buttons/Button/Button.types';
2
2
  import { Icon32 } from '../../../../../../ui/src/lib/Base/Icon/Icon.types';
3
-
4
3
  export interface PointOfInterestProfileProps extends Omit<ButtonProps, 'children'> {
5
4
  buttonLabel: string;
6
5
  icon: Icon32;
@@ -1,4 +1,3 @@
1
1
  import { ReactionSelectionProps } from './ReactionSelection.types';
2
-
3
2
  declare const ReactionSelection: ({ buttonContent, className, disabled, offset, onButtonClick, onReactionSelect, placement, reactions, }: ReactionSelectionProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default ReactionSelection;
@@ -2,7 +2,6 @@ import { PopupPlacement } from '@mui/base';
2
2
  import { ReactElement } from 'react';
3
3
  import { ReactionType } from '../../../../../api/src/lib/types/reactions';
4
4
  import { Reaction } from '../ReactionStack/ReactionStack.types';
5
-
6
5
  export interface ReactionSelectionProps {
7
6
  buttonContent: ReactElement;
8
7
  className?: string;
@@ -1,4 +1,3 @@
1
1
  import { ReactionStackProps } from './ReactionStack.types';
2
-
3
2
  declare const ReactionStack: ({ activeReaction, expanded, limit, onClick, reactions, size, stack, }: ReactionStackProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default ReactionStack;
@@ -1,5 +1,4 @@
1
1
  import { ReactionType } from '../../../../../api/src/lib/types/reactions';
2
-
3
2
  export interface ReactionStackProps {
4
3
  activeReaction?: ReactionType;
5
4
  expanded?: boolean;
@@ -1,3 +1,2 @@
1
1
  import { ReactionItemProps } from './ReactionItem.types';
2
-
3
2
  export declare const ReactionItem: ({ activeReaction, count, expanded, onSelect, reaction, selected, size, stack, tooltip, }: ReactionItemProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,5 +1,4 @@
1
1
  import { ReactionType } from '../../../../../../../api/src/lib/types/reactions';
2
-
3
2
  export type ReactionItemProps = {
4
3
  activeReaction?: ReactionType;
5
4
  count: number | undefined;
@@ -1,7 +1,6 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { ReactionType } from '../../../../../../../api/src/lib/types/reactions';
3
3
  import { ReactionPillProps } from './ReactionPill.type';
4
-
5
4
  export declare const renderReaction: (type: ReactionType) => ReactElement;
6
5
  declare const ReactionPill: ({ className, count, expanded, onClick, reaction, selected, size, stack, }: ReactionPillProps) => ReactElement;
7
6
  export default ReactionPill;
@@ -1,6 +1,5 @@
1
1
  import { ReactionType } from '../../../../../../../api/src/lib/types/reactions';
2
2
  import { BaseButtonProps } from '../../../../../../../ui/src/lib/Atoms/Buttons/Button/Button.types';
3
-
4
3
  export interface ReactionPillProps extends BaseButtonProps {
5
4
  className?: string;
6
5
  count?: number;
@@ -1,4 +1,3 @@
1
1
  import { ReactionTabListProps } from './ReactionTabList.types';
2
-
3
2
  declare const ReactionTabList: ({ closeText, getPicturePlaceholder, getReactions, headerTitle, open, postId, setOpen, }: ReactionTabListProps) => import("react/jsx-runtime").JSX.Element | null;
4
3
  export default ReactionTabList;
@@ -1,5 +1,4 @@
1
1
  import { ReactionUser, ReactionsGetPayload, ReactionsGetResponse } from '../../../../../api/src/lib/types/reactions';
2
-
3
2
  export interface ReactionTabListProps {
4
3
  closeText?: string;
5
4
  getPicturePlaceholder: (user: ReactionUser) => string;
@@ -1,5 +1,4 @@
1
1
  import { ReactionType } from '../../../../api/src/lib/types/reactions';
2
2
  import { Reaction } from './ReactionStack/ReactionStack.types';
3
-
4
3
  export declare const sortReactions: <T extends Reaction>(reactions: T[]) => T[];
5
4
  export declare const isReactionType: (key: string) => key is Exclude<ReactionType, "bookmark">;
@@ -1,4 +1,3 @@
1
1
  import { ResponsiveModalProps } from './ResponsiveModal.types';
2
-
3
2
  declare const ResponsiveModal: ({ cancelText, content, footer, handleClose, open, title, }: ResponsiveModalProps) => import("react/jsx-runtime").JSX.Element;
4
3
  export default ResponsiveModal;
@@ -1,5 +1,4 @@
1
1
  import { ReactElement } from 'react';
2
-
3
2
  export interface ResponsiveModalProps {
4
3
  cancelText?: string;
5
4
  content?: ReactElement;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/nebenan-base",
3
- "version": "1.9.0-development.47",
3
+ "version": "1.9.0-development.49",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "repository": "https://github.com/good-hood-gmbh/goodhood-web",