@trycourier/courier-react 8.0.12-beta → 8.0.14-beta

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.
@@ -0,0 +1,6 @@
1
+ import { default as React } from 'react';
2
+ interface CourierClientProps {
3
+ children: React.ReactNode;
4
+ }
5
+ export declare const CourierClientComponent: React.FC<CourierClientProps>;
6
+ export {};
@@ -1,6 +1,6 @@
1
1
  import { CourierInboxFeedType, CourierInboxHeaderFactoryProps, CourierInboxListItemActionFactoryProps, CourierInboxListItemFactoryProps, CourierInboxMenuButtonFactoryProps, CourierInboxPaginationItemFactoryProps, CourierInboxPopupAlignment, CourierInboxStateEmptyFactoryProps, CourierInboxStateErrorFactoryProps, CourierInboxStateLoadingFactoryProps, CourierInboxTheme } from '@trycourier/courier-ui-inbox';
2
2
  import { CourierComponentThemeMode } from '@trycourier/courier-ui-core';
3
- export interface CourierInboxMenuProps {
3
+ export interface CourierInboxPopupMenuProps {
4
4
  popupAlignment?: CourierInboxPopupAlignment;
5
5
  popupWidth?: string;
6
6
  popupHeight?: string;
@@ -23,4 +23,4 @@ export interface CourierInboxMenuProps {
23
23
  renderPopupPaginationItem?: (props: CourierInboxPaginationItemFactoryProps | undefined | null) => React.ReactNode;
24
24
  renderPopupMenuButton?: (props: CourierInboxMenuButtonFactoryProps | undefined | null) => React.ReactNode;
25
25
  }
26
- export declare const CourierInboxMenu: (props: CourierInboxMenuProps) => import("react/jsx-runtime").JSX.Element;
26
+ export declare const CourierInboxPopupMenu: (props: CourierInboxPopupMenuProps) => import("react/jsx-runtime").JSX.Element;
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  export * from './hooks/use-courier';
2
2
  export * from './components/courier-inbox';
3
- export * from './components/courier-inbox-menu';
3
+ export * from './components/courier-inbox-popup-menu';