@bcrumbs.net/inbox 0.0.44 → 0.0.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 (31) hide show
  1. package/assets/ar/inbox.json +2 -1
  2. package/assets/en/inbox.json +2 -1
  3. package/index.cjs.js +7345 -1015
  4. package/index.esm.js +7346 -1016
  5. package/package.json +3 -3
  6. package/src/app/ai/components/CrumbySettings/CrumbySettingsLoader.d.ts +5 -0
  7. package/src/app/ai/pages/CrumbySettings.d.ts +2 -0
  8. package/src/app/ai/types/index.d.ts +1 -1
  9. package/src/app/billing/hooks/useTurnstile.d.ts +1 -1
  10. package/src/app/broadcast/components/BroadcastDetailsSection.d.ts +1 -2
  11. package/src/app/contact/components/ContactFilterOptions.d.ts +5 -3
  12. package/src/app/contact/components/ImportProgressDialog.d.ts +4 -1
  13. package/src/app/contact/hooks/useExportClients.d.ts +12 -0
  14. package/src/app/contact/pages/contact/ContactHeader.d.ts +2 -1
  15. package/src/app/generic/components/BCTurnstile.d.ts +47 -0
  16. package/src/app/{broadcast → generic}/components/MessagePreview.d.ts +4 -1
  17. package/src/app/generic/components/PreviewHeaderImage.d.ts +4 -0
  18. package/src/app/generic/components/TemplateParameterInputs.d.ts +1 -2
  19. package/src/app/generic/components/ToggleSetting.d.ts +9 -0
  20. package/src/app/inbox/components/NewDetails/TagsSelector.d.ts +4 -1
  21. package/src/app/inbox/hooks/useConversationsPerodicFetch.d.ts +1 -0
  22. package/src/app/layout/constants/subMenu.d.ts +12 -2
  23. package/src/app/resources/components/Integrations/Telegram/index.d.ts +4 -0
  24. package/src/app/resources/hooks/useFBPagesHook.d.ts +1 -0
  25. package/src/app/resources/hooks/useInstagramHook.d.ts +1 -0
  26. package/src/app/resources/hooks/useWabaHook.d.ts +1 -0
  27. package/src/assets/locales/translations.d.ts +44 -0
  28. package/src/config/constants.d.ts +1 -1
  29. package/src/graphql.autogenerated.d.ts +1923 -1500
  30. package/src/lib/inbox.d.ts +1 -0
  31. package/src/app/broadcast/components/BroadcastSectionCard.d.ts +0 -14
@@ -9,5 +9,6 @@ export type InboxProps = {
9
9
  initialFilters?: ConvsFilters;
10
10
  showDetails?: boolean;
11
11
  clientSectionPlaceholder?: React.ReactNode;
12
+ mobileBreakpoint?: number;
12
13
  };
13
14
  export declare const Inbox: React.FC<InboxProps>;
@@ -1,14 +0,0 @@
1
- import { SerializedStyles } from '@emotion/react';
2
- import React from 'react';
3
- interface BroadcastSectionCardProps {
4
- title?: string;
5
- subtitle?: string;
6
- columns?: number;
7
- containerCss?: SerializedStyles;
8
- titleCss?: SerializedStyles;
9
- subTitleCss?: SerializedStyles;
10
- noContentContainer?: boolean;
11
- children: React.ReactNode;
12
- }
13
- declare const _default: React.MemoExoticComponent<({ title, subtitle, columns, containerCss, titleCss, subTitleCss, noContentContainer, children, }: BroadcastSectionCardProps) => import("@emotion/react/jsx-runtime").JSX.Element>;
14
- export default _default;