@goodhood-web/nebenan-base 1.8.0 → 1.8.1-development.2
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.js +21 -21
- package/index.mjs +930 -928
- package/lib/MenuLinkList/MenuLinkList.types.d.ts +1 -1
- package/lib/MobileLayout/MobileLayout.types.d.ts +2 -2
- package/lib/MobileLayout/components/MobileHeaderBar/MobileHeaderBar.types.d.ts +4 -4
- package/lib/PostAuthor/PostAuthor.types.d.ts +5 -5
- package/lib/Reactions/ReactionStack/components/ReactionPill/ReactionPill.type.d.ts +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ReactElement, ReactNode } from 'react';
|
|
2
|
-
import { IconButtonProps } from '../../../../ui/src/lib/IconButton/IconButton.types';
|
|
3
|
-
import { NavBarProps } from '../../../../ui/src/lib/NavBar/NavBar.types';
|
|
2
|
+
import { IconButtonProps } from '../../../../ui/src/lib/Atoms/Buttons/IconButton/IconButton.types';
|
|
3
|
+
import { NavBarProps } from '../../../../ui/src/lib/Molecules/Navigation/NavBar/NavBar.types';
|
|
4
4
|
import { MobileHeaderBarProps } from './components/MobileHeaderBar/MobileHeaderBar.types';
|
|
5
5
|
|
|
6
6
|
export interface MobileLayoutProps {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ReactElement } from 'react';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import { TypographyProps } from '../../../../../../ui/src/lib/Typography/Typography.types';
|
|
2
|
+
import { IconButtonProps } from '../../../../../../ui/src/lib/Atoms/Buttons/IconButton/IconButton.types';
|
|
3
|
+
import { NotificationBubbleProps } from '../../../../../../ui/src/lib/Atoms/NotificationBubble/NotificationBubble.types';
|
|
4
|
+
import { IconProps } from '../../../../../../ui/src/lib/Base/Icon/Icon.types';
|
|
5
|
+
import { TypographyProps } from '../../../../../../ui/src/lib/Base/Typography/Typography.types';
|
|
6
6
|
|
|
7
7
|
export interface MobileHeaderBarProps {
|
|
8
8
|
as?: Exclude<TypographyProps['as'], 'h1'>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
-
import { BadgeProps } from '../../../../ui/src/lib/Badge/Badge.types';
|
|
3
|
-
import { LinkProps } from '../../../../ui/src/lib/Button/Button.types';
|
|
4
|
-
import { IconButtonProps } from '../../../../ui/src/lib/IconButton/IconButton.types';
|
|
5
|
-
import { ThumbnailCircularProps, ThumbnailSquareProps } from '../../../../ui/src/lib/Thumbnail/Thumbnail.type';
|
|
6
|
-
import { default as ThumbnailWrapperProps } from '../../../../ui/src/lib/ThumbnailWrapper/ThumbnailWrapper.types';
|
|
2
|
+
import { BadgeProps } from '../../../../ui/src/lib/Atoms/Badges/Badge/Badge.types';
|
|
3
|
+
import { LinkProps } from '../../../../ui/src/lib/Atoms/Buttons/Button/Button.types';
|
|
4
|
+
import { IconButtonProps } from '../../../../ui/src/lib/Atoms/Buttons/IconButton/IconButton.types';
|
|
5
|
+
import { ThumbnailCircularProps, ThumbnailSquareProps } from '../../../../ui/src/lib/Atoms/Content/Thumbnail/Thumbnail.type';
|
|
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
8
|
|
|
9
9
|
type ThumbnailProps = (ThumbnailCircularProps & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ReactionType } from '../../../../../../../api/src/lib/types/reactions';
|
|
2
|
-
import { BaseButtonProps } from '../../../../../../../ui/src/lib/Button/Button.types';
|
|
2
|
+
import { BaseButtonProps } from '../../../../../../../ui/src/lib/Atoms/Buttons/Button/Button.types';
|
|
3
3
|
|
|
4
4
|
export interface ReactionPillProps extends BaseButtonProps {
|
|
5
5
|
className?: string;
|