@goodhood-web/nebenan-base 1.3.0-development.21 → 1.3.0-development.22
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 +14 -14
- package/lib/DesktopNavbarSearchField/DesktopNavbarSearchField.types.d.ts +1 -1
- package/lib/MainLayout/MainLayout.d.ts +1 -1
- package/lib/MainLayout/MainLayout.types.d.ts +1 -1
- package/lib/MobileLayout/MobileLayout.types.d.ts +3 -3
- package/lib/MobileLayout/components/MobileHeaderBar/MobileHeaderBar.types.d.ts +4 -4
- package/lib/ReactionSelection/ReactionSelection.types.d.ts +3 -3
- package/lib/ReactionStack/components/ReactionPill/ReactionPill.d.ts +2 -2
- package/lib/ReactionStack/components/ReactionPill/ReactionPill.type.d.ts +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { default as ReactionTabList } from './lib/ReactionTabList/ReactionTabList';
|
|
2
|
-
import { Reaction, ReactionPill, ReactionStack } from './lib/ReactionStack';
|
|
3
|
-
import { default as ReactionSelection } from './lib/ReactionSelection/ReactionSelection';
|
|
4
|
-
import { default as Profile } from './lib/Profile/Profile';
|
|
5
|
-
import { default as MobileHeaderBar } from './lib/MobileLayout/components/MobileHeaderBar/MobileHeaderBar';
|
|
6
|
-
import { default as MobileLayout } from './lib/MobileLayout/MobileLayout';
|
|
7
|
-
import { default as MenuLinkList } from './lib/MenuLinkList/MenuLinkList';
|
|
8
|
-
import { default as MainLayout } from './lib/MainLayout/MainLayout';
|
|
9
|
-
import { default as LayoutLoadingSpinner } from './lib/LayoutLoadingSpinner/LayoutLoadingSpinner';
|
|
10
|
-
import { default as EmojiSearch } from './lib/EmojiPicker/EmojiSearch';
|
|
11
|
-
import { default as EmojiPicker } from './lib/EmojiPicker/EmojiPicker';
|
|
12
|
-
import { default as DesktopNavigationBar } from './lib/DesktopNavigationBar/DesktopNavigationBar';
|
|
13
|
-
import { default as DesktopNavbarSearchField } from './lib/DesktopNavbarSearchField/DesktopNavbarSearchField';
|
|
14
|
-
import { default as DesktopLayout } from './lib/DesktopLayout/DesktopLayout';
|
|
15
1
|
import { default as ContentCreatorTrigger } from './lib/ContentCreatorTrigger/ContentCreatorTrigger';
|
|
2
|
+
import { default as DesktopLayout } from './lib/DesktopLayout/DesktopLayout';
|
|
3
|
+
import { default as DesktopNavbarSearchField } from './lib/DesktopNavbarSearchField/DesktopNavbarSearchField';
|
|
4
|
+
import { default as DesktopNavigationBar } from './lib/DesktopNavigationBar/DesktopNavigationBar';
|
|
5
|
+
import { default as EmojiPicker } from './lib/EmojiPicker/EmojiPicker';
|
|
6
|
+
import { default as EmojiSearch } from './lib/EmojiPicker/EmojiSearch';
|
|
7
|
+
import { default as LayoutLoadingSpinner } from './lib/LayoutLoadingSpinner/LayoutLoadingSpinner';
|
|
8
|
+
import { default as MainLayout } from './lib/MainLayout/MainLayout';
|
|
9
|
+
import { default as MenuLinkList } from './lib/MenuLinkList/MenuLinkList';
|
|
10
|
+
import { default as MobileLayout } from './lib/MobileLayout/MobileLayout';
|
|
11
|
+
import { default as MobileHeaderBar } from './lib/MobileLayout/components/MobileHeaderBar/MobileHeaderBar';
|
|
12
|
+
import { default as Profile } from './lib/Profile/Profile';
|
|
13
|
+
import { default as ReactionSelection } from './lib/ReactionSelection/ReactionSelection';
|
|
14
|
+
import { Reaction, ReactionPill, ReactionStack } from './lib/ReactionStack';
|
|
15
|
+
import { default as ReactionTabList } from './lib/ReactionTabList/ReactionTabList';
|
|
16
16
|
|
|
17
17
|
export { ContentCreatorTrigger, DesktopLayout, DesktopNavbarSearchField, DesktopNavigationBar, EmojiPicker, EmojiSearch, MainLayout, MenuLinkList, MobileHeaderBar, MobileLayout, Profile, Reaction, ReactionPill, ReactionSelection, ReactionStack, ReactionTabList, LayoutLoadingSpinner, };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { MainLayoutProps } from './MainLayout.types';
|
|
2
1
|
import { PropsWithChildren } from 'react';
|
|
2
|
+
import { MainLayoutProps } from './MainLayout.types';
|
|
3
3
|
|
|
4
4
|
declare const MainLayout: ({ children, desktop, keepLoading, mobile, }: PropsWithChildren<MainLayoutProps>) => import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export default MainLayout;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { MobileLayoutProps } from '../MobileLayout/MobileLayout.types';
|
|
2
1
|
import { DesktopLayoutTwoColumnProps } from '../DesktopLayoutTwoColumn/DesktopLayoutTwoColumn.types';
|
|
2
|
+
import { MobileLayoutProps } from '../MobileLayout/MobileLayout.types';
|
|
3
3
|
|
|
4
4
|
export interface MainLayoutProps {
|
|
5
5
|
desktop: Omit<DesktopLayoutTwoColumnProps, 'children'>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { MobileHeaderBarProps } from './components/MobileHeaderBar/MobileHeaderBar.types';
|
|
2
|
-
import { NavBarProps } from '../../../../ui/src/lib/NavBar/NavBar.types';
|
|
3
|
-
import { IconButtonProps } from '../../../../ui/src/lib/IconButton/IconButton.types';
|
|
4
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';
|
|
4
|
+
import { MobileHeaderBarProps } from './components/MobileHeaderBar/MobileHeaderBar.types';
|
|
5
5
|
|
|
6
6
|
export interface MobileLayoutProps {
|
|
7
7
|
action?: ReactElement<IconButtonProps>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { TypographyProps } from '../../../../../../ui/src/lib/Typography/Typography.types';
|
|
2
|
-
import { NotificationBubbleProps } from '../../../../../../ui/src/lib/NotificationBubble/NotificationBubble.types';
|
|
3
|
-
import { IconButtonProps } from '../../../../../../ui/src/lib/IconButton/IconButton.types';
|
|
4
|
-
import { IconProps } from '../../../../../../ui/src/lib/Icon/Icon.types';
|
|
5
1
|
import { ReactElement } from 'react';
|
|
2
|
+
import { IconProps } from '../../../../../../ui/src/lib/Icon/Icon.types';
|
|
3
|
+
import { IconButtonProps } from '../../../../../../ui/src/lib/IconButton/IconButton.types';
|
|
4
|
+
import { NotificationBubbleProps } from '../../../../../../ui/src/lib/NotificationBubble/NotificationBubble.types';
|
|
5
|
+
import { TypographyProps } from '../../../../../../ui/src/lib/Typography/Typography.types';
|
|
6
6
|
|
|
7
7
|
export interface MobileHeaderBarProps {
|
|
8
8
|
as?: Exclude<TypographyProps['as'], 'h1'>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Reaction } from '../ReactionStack/ReactionStack.types';
|
|
2
|
-
import { ReactionType } from '../../../../api/src/lib/types/reactions';
|
|
3
|
-
import { ReactElement } from 'react';
|
|
4
1
|
import { PopupPlacement } from '@mui/base';
|
|
2
|
+
import { ReactElement } from 'react';
|
|
3
|
+
import { ReactionType } from '../../../../api/src/lib/types/reactions';
|
|
4
|
+
import { Reaction } from '../ReactionStack/ReactionStack.types';
|
|
5
5
|
|
|
6
6
|
export interface ReactionSelectionProps {
|
|
7
7
|
buttonContent: ReactElement;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ReactionPillProps } from './ReactionPill.type';
|
|
2
|
-
import { ReactionType } from '../../../../../../api/src/lib/types/reactions';
|
|
3
1
|
import { ReactElement } from 'react';
|
|
2
|
+
import { ReactionType } from '../../../../../../api/src/lib/types/reactions';
|
|
3
|
+
import { ReactionPillProps } from './ReactionPill.type';
|
|
4
4
|
|
|
5
5
|
export declare const renderReaction: (type: ReactionType) => ReactElement;
|
|
6
6
|
declare const ReactionPill: ({ className, count, expanded, onClick, reaction, selected, size, stack, }: ReactionPillProps) => ReactElement;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BaseButtonProps } from '../../../../../../ui/src/lib/Button/Button.types';
|
|
2
1
|
import { ReactionType } from '../../../../../../api/src/lib/types/reactions';
|
|
2
|
+
import { BaseButtonProps } from '../../../../../../ui/src/lib/Button/Button.types';
|
|
3
3
|
|
|
4
4
|
export interface ReactionPillProps extends BaseButtonProps {
|
|
5
5
|
className?: string;
|