@connectycube/chat-widget 0.22.0 → 0.23.0

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 (181) hide show
  1. package/CHANGELOG.md +19 -4
  2. package/README.md +8 -0
  3. package/dist/index.es.js +16926 -18509
  4. package/dist/index.umd.js +73 -50
  5. package/dist/react19/connectycube-chat-widget-sw.js +19 -0
  6. package/dist/react19/index.es.js +18097 -0
  7. package/dist/react19/logo.png +0 -0
  8. package/dist/react19/types/components/app-login.d.ts +8 -0
  9. package/dist/react19/types/components/app-shadow-root.d.ts +6 -0
  10. package/dist/react19/types/components/home/sidebar/tabs/users-tab.d.ts +2 -0
  11. package/dist/{components → react19/types/components}/shadcn-ui/alert-dialog.d.ts +5 -5
  12. package/dist/{components → react19/types/components}/shadcn-ui/avatar.d.ts +2 -2
  13. package/dist/{components → react19/types/components}/shadcn-ui/badge.d.ts +2 -2
  14. package/dist/{components → react19/types/components}/shadcn-ui/button.d.ts +4 -4
  15. package/dist/{components → react19/types/components}/shadcn-ui/dialog.d.ts +4 -4
  16. package/dist/{components → react19/types/components}/shadcn-ui/dropdown-menu.d.ts +4 -4
  17. package/dist/react19/types/components/shadcn-ui/input.d.ts +3 -0
  18. package/dist/{components → react19/types/components}/shadcn-ui/label.d.ts +2 -2
  19. package/dist/{components → react19/types/components}/shadcn-ui/switch.d.ts +2 -2
  20. package/dist/{components → react19/types/components}/shadcn-ui/tabs.d.ts +2 -2
  21. package/dist/{components → react19/types/components}/shared/avatar.d.ts +1 -1
  22. package/dist/{components → react19/types/components}/shared/widget-button.d.ts +1 -1
  23. package/dist/react19/types/components/shared/widget-messages-badge.d.ts +7 -0
  24. package/dist/react19/types/components/shared/widget-online-badge.d.ts +7 -0
  25. package/dist/{hooks → react19/types/hooks}/index.d.ts +1 -1
  26. package/dist/{hooks → react19/types/hooks}/store/useOnlineUsersCountStore.d.ts +3 -0
  27. package/dist/react19/types/hooks/store/useShadowRootStore.d.ts +7 -0
  28. package/dist/types/App.d.ts +50 -0
  29. package/dist/types/components/app-login.d.ts +8 -0
  30. package/dist/types/components/app-shadow-root.d.ts +6 -0
  31. package/dist/types/components/home/home.d.ts +2 -0
  32. package/dist/types/components/home/main/chat-header.d.ts +3 -0
  33. package/dist/types/components/home/main/chat-info-members.d.ts +3 -0
  34. package/dist/types/components/home/main/chat-info-user.d.ts +7 -0
  35. package/dist/types/components/home/main/chat-input.d.ts +8 -0
  36. package/dist/types/components/home/main/group-member.d.ts +8 -0
  37. package/dist/types/components/home/main/main.d.ts +2 -0
  38. package/dist/types/components/home/main/message-attachment.d.ts +8 -0
  39. package/dist/types/components/home/main/message-body.d.ts +6 -0
  40. package/dist/types/components/home/main/message-url-preview.d.ts +6 -0
  41. package/dist/types/components/home/main/message.d.ts +11 -0
  42. package/dist/types/components/home/main/my-profile/my-block-list-item.d.ts +7 -0
  43. package/dist/types/components/home/main/my-profile/my-block-list.d.ts +3 -0
  44. package/dist/types/components/home/main/my-profile/my-profile-settings.d.ts +2 -0
  45. package/dist/types/components/home/main/my-profile/my-profile.d.ts +3 -0
  46. package/dist/types/components/home/main/profile-info.d.ts +6 -0
  47. package/dist/types/components/home/main/quick-actions.d.ts +5 -0
  48. package/dist/types/components/home/main/report-user-dialog.d.ts +6 -0
  49. package/dist/types/components/home/sidebar/chat-item.d.ts +7 -0
  50. package/dist/types/components/home/sidebar/chats-list.d.ts +6 -0
  51. package/dist/types/components/home/sidebar/new-chat/create-group-chat/create-group-chat.d.ts +8 -0
  52. package/dist/types/components/home/sidebar/new-chat/create-group-chat/participant.d.ts +7 -0
  53. package/dist/types/components/home/sidebar/new-chat/new-chat-dialog.d.ts +9 -0
  54. package/dist/types/components/home/sidebar/new-chat/searched-user.d.ts +13 -0
  55. package/dist/types/components/home/sidebar/sidebar.d.ts +2 -0
  56. package/dist/types/components/home/sidebar/tabs/chats-tab.d.ts +2 -0
  57. package/dist/types/components/home/sidebar/tabs/users-tab.d.ts +2 -0
  58. package/dist/types/components/home/sidebar/user-item.d.ts +7 -0
  59. package/dist/types/components/home/sidebar/users-list.d.ts +6 -0
  60. package/dist/types/components/shadcn-ui/alert-dialog.d.ts +14 -0
  61. package/dist/types/components/shadcn-ui/avatar.d.ts +6 -0
  62. package/dist/types/components/shadcn-ui/badge.d.ts +9 -0
  63. package/dist/types/components/shadcn-ui/button.d.ts +10 -0
  64. package/dist/types/components/shadcn-ui/dialog.d.ts +13 -0
  65. package/dist/types/components/shadcn-ui/dropdown-menu.d.ts +25 -0
  66. package/dist/types/components/shadcn-ui/input.d.ts +3 -0
  67. package/dist/types/components/shadcn-ui/label.d.ts +4 -0
  68. package/dist/types/components/shadcn-ui/sonner.d.ts +3 -0
  69. package/dist/types/components/shadcn-ui/switch.d.ts +4 -0
  70. package/dist/types/components/shadcn-ui/tabs.d.ts +7 -0
  71. package/dist/types/components/shared/alert-busy.d.ts +2 -0
  72. package/dist/types/components/shared/avatar.d.ts +13 -0
  73. package/dist/types/components/shared/confirmation-alert.d.ts +8 -0
  74. package/dist/types/components/shared/empty-content-placeholder.d.ts +7 -0
  75. package/dist/types/components/shared/loader.d.ts +5 -0
  76. package/dist/types/components/shared/widget-button.d.ts +15 -0
  77. package/dist/types/components/shared/widget-messages-badge.d.ts +7 -0
  78. package/dist/types/components/shared/widget-online-badge.d.ts +7 -0
  79. package/dist/types/helpers/connectycube.d.ts +33 -0
  80. package/dist/types/helpers/debounce.d.ts +3 -0
  81. package/dist/types/helpers/i18n.d.ts +2 -0
  82. package/dist/types/helpers/notifications.d.ts +11 -0
  83. package/dist/types/helpers/throttle.d.ts +3 -0
  84. package/dist/types/hooks/index.d.ts +21 -0
  85. package/dist/types/hooks/store/useActiveTabsStore.d.ts +15 -0
  86. package/dist/types/hooks/store/useAlertBusyStore.d.ts +11 -0
  87. package/dist/types/hooks/store/useAppDefaultChatStore.d.ts +21 -0
  88. package/dist/types/hooks/store/useAppInterfaceStore.d.ts +27 -0
  89. package/dist/types/hooks/store/useAppNotificationStore.d.ts +34 -0
  90. package/dist/types/hooks/store/useAppQuickActionsStore.d.ts +17 -0
  91. package/dist/types/hooks/store/useAppSettingsStore.d.ts +31 -0
  92. package/dist/types/hooks/store/useDraftMessagesStore.d.ts +14 -0
  93. package/dist/types/hooks/store/useLinkPreviewStore.d.ts +17 -0
  94. package/dist/types/hooks/store/useOnlineUsersCountStore.d.ts +14 -0
  95. package/dist/types/hooks/store/useProfileStore.d.ts +9 -0
  96. package/dist/types/hooks/store/useShadowRootStore.d.ts +7 -0
  97. package/dist/types/hooks/store/useUnreadCountStore.d.ts +8 -0
  98. package/dist/types/hooks/store/useUserSettingsStore.d.ts +14 -0
  99. package/dist/types/hooks/useAppAuthorization.d.ts +14 -0
  100. package/dist/types/hooks/useLastActivity.d.ts +2 -0
  101. package/dist/types/hooks/useNotification.d.ts +8 -0
  102. package/dist/types/hooks/usePageFocus.d.ts +6 -0
  103. package/dist/types/hooks/useResizeScreenWidth.d.ts +10 -0
  104. package/dist/types/hooks/useTypingStatusText.d.ts +3 -0
  105. package/dist/types/index.d.ts +1 -0
  106. package/dist/types/lib/utils.d.ts +6 -0
  107. package/dist/types/locales/el/translation.json.d.ts +65 -0
  108. package/dist/types/locales/en/translation.json.d.ts +65 -0
  109. package/dist/types/locales/ua/translation.json.d.ts +65 -0
  110. package/dist/types/main.d.ts +1 -0
  111. package/dist/types/tests/connectycube.test.d.ts +1 -0
  112. package/package.json +54 -45
  113. package/dist/components/home/sidebar/tabs/users-tab.d.ts +0 -3
  114. package/dist/components/login.d.ts +0 -8
  115. package/dist/components/shadcn-ui/input.d.ts +0 -3
  116. package/dist/favicon.ico +0 -0
  117. package/dist/hooks/useValue.d.ts +0 -4
  118. /package/dist/{App.d.ts → react19/types/App.d.ts} +0 -0
  119. /package/dist/{components → react19/types/components}/home/home.d.ts +0 -0
  120. /package/dist/{components → react19/types/components}/home/main/chat-header.d.ts +0 -0
  121. /package/dist/{components → react19/types/components}/home/main/chat-info-members.d.ts +0 -0
  122. /package/dist/{components → react19/types/components}/home/main/chat-info-user.d.ts +0 -0
  123. /package/dist/{components → react19/types/components}/home/main/chat-input.d.ts +0 -0
  124. /package/dist/{components → react19/types/components}/home/main/group-member.d.ts +0 -0
  125. /package/dist/{components → react19/types/components}/home/main/main.d.ts +0 -0
  126. /package/dist/{components → react19/types/components}/home/main/message-attachment.d.ts +0 -0
  127. /package/dist/{components → react19/types/components}/home/main/message-body.d.ts +0 -0
  128. /package/dist/{components → react19/types/components}/home/main/message-url-preview.d.ts +0 -0
  129. /package/dist/{components → react19/types/components}/home/main/message.d.ts +0 -0
  130. /package/dist/{components → react19/types/components}/home/main/my-profile/my-block-list-item.d.ts +0 -0
  131. /package/dist/{components → react19/types/components}/home/main/my-profile/my-block-list.d.ts +0 -0
  132. /package/dist/{components → react19/types/components}/home/main/my-profile/my-profile-settings.d.ts +0 -0
  133. /package/dist/{components → react19/types/components}/home/main/my-profile/my-profile.d.ts +0 -0
  134. /package/dist/{components → react19/types/components}/home/main/profile-info.d.ts +0 -0
  135. /package/dist/{components → react19/types/components}/home/main/quick-actions.d.ts +0 -0
  136. /package/dist/{components → react19/types/components}/home/main/report-user-dialog.d.ts +0 -0
  137. /package/dist/{components → react19/types/components}/home/sidebar/chat-item.d.ts +0 -0
  138. /package/dist/{components → react19/types/components}/home/sidebar/chats-list.d.ts +0 -0
  139. /package/dist/{components → react19/types/components}/home/sidebar/new-chat/create-group-chat/create-group-chat.d.ts +0 -0
  140. /package/dist/{components → react19/types/components}/home/sidebar/new-chat/create-group-chat/participant.d.ts +0 -0
  141. /package/dist/{components → react19/types/components}/home/sidebar/new-chat/new-chat-dialog.d.ts +0 -0
  142. /package/dist/{components → react19/types/components}/home/sidebar/new-chat/searched-user.d.ts +0 -0
  143. /package/dist/{components → react19/types/components}/home/sidebar/sidebar.d.ts +0 -0
  144. /package/dist/{components → react19/types/components}/home/sidebar/tabs/chats-tab.d.ts +0 -0
  145. /package/dist/{components → react19/types/components}/home/sidebar/user-item.d.ts +0 -0
  146. /package/dist/{components → react19/types/components}/home/sidebar/users-list.d.ts +0 -0
  147. /package/dist/{components → react19/types/components}/shadcn-ui/sonner.d.ts +0 -0
  148. /package/dist/{components → react19/types/components}/shared/alert-busy.d.ts +0 -0
  149. /package/dist/{components → react19/types/components}/shared/confirmation-alert.d.ts +0 -0
  150. /package/dist/{components → react19/types/components}/shared/empty-content-placeholder.d.ts +0 -0
  151. /package/dist/{components → react19/types/components}/shared/loader.d.ts +0 -0
  152. /package/dist/{helpers → react19/types/helpers}/connectycube.d.ts +0 -0
  153. /package/dist/{helpers → react19/types/helpers}/debounce.d.ts +0 -0
  154. /package/dist/{helpers → react19/types/helpers}/i18n.d.ts +0 -0
  155. /package/dist/{helpers → react19/types/helpers}/notifications.d.ts +0 -0
  156. /package/dist/{helpers → react19/types/helpers}/throttle.d.ts +0 -0
  157. /package/dist/{hooks → react19/types/hooks}/store/useActiveTabsStore.d.ts +0 -0
  158. /package/dist/{hooks → react19/types/hooks}/store/useAlertBusyStore.d.ts +0 -0
  159. /package/dist/{hooks → react19/types/hooks}/store/useAppDefaultChatStore.d.ts +0 -0
  160. /package/dist/{hooks → react19/types/hooks}/store/useAppInterfaceStore.d.ts +0 -0
  161. /package/dist/{hooks → react19/types/hooks}/store/useAppNotificationStore.d.ts +0 -0
  162. /package/dist/{hooks → react19/types/hooks}/store/useAppQuickActionsStore.d.ts +0 -0
  163. /package/dist/{hooks → react19/types/hooks}/store/useAppSettingsStore.d.ts +0 -0
  164. /package/dist/{hooks → react19/types/hooks}/store/useDraftMessagesStore.d.ts +0 -0
  165. /package/dist/{hooks → react19/types/hooks}/store/useLinkPreviewStore.d.ts +0 -0
  166. /package/dist/{hooks → react19/types/hooks}/store/useProfileStore.d.ts +0 -0
  167. /package/dist/{hooks → react19/types/hooks}/store/useUnreadCountStore.d.ts +0 -0
  168. /package/dist/{hooks → react19/types/hooks}/store/useUserSettingsStore.d.ts +0 -0
  169. /package/dist/{hooks → react19/types/hooks}/useAppAuthorization.d.ts +0 -0
  170. /package/dist/{hooks → react19/types/hooks}/useLastActivity.d.ts +0 -0
  171. /package/dist/{hooks → react19/types/hooks}/useNotification.d.ts +0 -0
  172. /package/dist/{hooks → react19/types/hooks}/usePageFocus.d.ts +0 -0
  173. /package/dist/{hooks → react19/types/hooks}/useResizeScreenWidth.d.ts +0 -0
  174. /package/dist/{hooks → react19/types/hooks}/useTypingStatusText.d.ts +0 -0
  175. /package/dist/{index.d.ts → react19/types/index.d.ts} +0 -0
  176. /package/dist/{lib → react19/types/lib}/utils.d.ts +0 -0
  177. /package/dist/{locales → react19/types/locales}/el/translation.json.d.ts +0 -0
  178. /package/dist/{locales → react19/types/locales}/en/translation.json.d.ts +0 -0
  179. /package/dist/{locales → react19/types/locales}/ua/translation.json.d.ts +0 -0
  180. /package/dist/{main.d.ts → react19/types/main.d.ts} +0 -0
  181. /package/dist/{tests → react19/types/tests}/connectycube.test.d.ts +0 -0
@@ -0,0 +1,25 @@
1
+ import * as React from 'react';
2
+ import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
3
+ declare function DropdownMenu({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
4
+ declare function DropdownMenuPortal({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>): import("react/jsx-runtime").JSX.Element;
5
+ declare function DropdownMenuTrigger({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): import("react/jsx-runtime").JSX.Element;
6
+ declare function DropdownMenuContent({ className, sideOffset, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Content>): import("react/jsx-runtime").JSX.Element;
7
+ declare function DropdownMenuGroup({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Group>): import("react/jsx-runtime").JSX.Element;
8
+ declare function DropdownMenuItem({ className, inset, variant, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
9
+ inset?: boolean;
10
+ variant?: 'default' | 'destructive';
11
+ }): import("react/jsx-runtime").JSX.Element;
12
+ declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): import("react/jsx-runtime").JSX.Element;
13
+ declare function DropdownMenuRadioGroup({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): import("react/jsx-runtime").JSX.Element;
14
+ declare function DropdownMenuRadioItem({ className, children, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): import("react/jsx-runtime").JSX.Element;
15
+ declare function DropdownMenuLabel({ className, inset, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
16
+ inset?: boolean;
17
+ }): import("react/jsx-runtime").JSX.Element;
18
+ declare function DropdownMenuSeparator({ className, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>): import("react/jsx-runtime").JSX.Element;
19
+ declare function DropdownMenuShortcut({ className, ...props }: React.ComponentProps<'span'>): import("react/jsx-runtime").JSX.Element;
20
+ declare function DropdownMenuSub({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Sub>): import("react/jsx-runtime").JSX.Element;
21
+ declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
22
+ inset?: boolean;
23
+ }): import("react/jsx-runtime").JSX.Element;
24
+ declare function DropdownMenuSubContent({ className, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): import("react/jsx-runtime").JSX.Element;
25
+ export { DropdownMenu, DropdownMenuPortal, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuGroup, DropdownMenuLabel, DropdownMenuItem, DropdownMenuCheckboxItem, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubTrigger, DropdownMenuSubContent, };
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare function Input({ className, type, ...props }: React.ComponentProps<'input'>): import("react/jsx-runtime").JSX.Element;
3
+ export { Input };
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import * as LabelPrimitive from '@radix-ui/react-label';
3
+ declare function Label({ className, ...props }: React.ComponentProps<typeof LabelPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
4
+ export { Label };
@@ -0,0 +1,3 @@
1
+ import { ToasterProps } from 'sonner';
2
+ declare const Toaster: ({ ...props }: ToasterProps) => import("react/jsx-runtime").JSX.Element;
3
+ export { Toaster };
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import * as SwitchPrimitive from '@radix-ui/react-switch';
3
+ declare function Switch({ className, ...props }: React.ComponentProps<typeof SwitchPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
4
+ export { Switch };
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ import * as TabsPrimitive from '@radix-ui/react-tabs';
3
+ declare function Tabs({ className, ...props }: React.ComponentProps<typeof TabsPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
4
+ declare function TabsList({ className, ...props }: React.ComponentProps<typeof TabsPrimitive.List>): import("react/jsx-runtime").JSX.Element;
5
+ declare function TabsTrigger({ className, ...props }: React.ComponentProps<typeof TabsPrimitive.Trigger>): import("react/jsx-runtime").JSX.Element;
6
+ declare function TabsContent({ className, ...props }: React.ComponentProps<typeof TabsPrimitive.Content>): import("react/jsx-runtime").JSX.Element;
7
+ export { Tabs, TabsList, TabsTrigger, TabsContent };
@@ -0,0 +1,2 @@
1
+ declare const AlertBusy: React.FC;
2
+ export default AlertBusy;
@@ -0,0 +1,13 @@
1
+ import { default as React } from 'react';
2
+ interface BaseAvatarProps {
3
+ imageUIDOrUrl?: string | null;
4
+ name?: string;
5
+ className?: string;
6
+ }
7
+ interface AvatarWithStatusProps extends BaseAvatarProps {
8
+ isOnline?: boolean;
9
+ }
10
+ declare const Avatar: React.FC<BaseAvatarProps> & {
11
+ WithStatus: React.NamedExoticComponent<AvatarWithStatusProps>;
12
+ };
13
+ export default Avatar;
@@ -0,0 +1,8 @@
1
+ import { ReactElement } from 'react';
2
+ export interface ConfirmationAlertProps {
3
+ triggerChild: ReactElement;
4
+ title: string;
5
+ body: string;
6
+ onConfirm: () => void;
7
+ }
8
+ export declare const ConfirmationAlert: React.FC<ConfirmationAlertProps>;
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ type EmptyContentPlaceholderProps = {
3
+ title: string | string[];
4
+ className?: React.HTMLAttributes<HTMLDivElement>['className'];
5
+ };
6
+ declare const _default: React.NamedExoticComponent<EmptyContentPlaceholderProps>;
7
+ export default _default;
@@ -0,0 +1,5 @@
1
+ export interface LoaderProps {
2
+ className?: string;
3
+ }
4
+ declare const Loader: React.FC<LoaderProps>;
5
+ export default Loader;
@@ -0,0 +1,15 @@
1
+ type WidgetButtonProps = {
2
+ toggleChat: () => void;
3
+ title: string;
4
+ style?: React.CSSProperties;
5
+ className?: string;
6
+ badgeTitle?: number;
7
+ badgeStyle?: React.CSSProperties;
8
+ badgeClassName?: string;
9
+ enableOnlineUsersBadge?: boolean;
10
+ onlineBadgeCount?: number;
11
+ onlineBadgeStyle?: React.CSSProperties;
12
+ onlineBadgeClassName?: string;
13
+ };
14
+ declare const WidgetButton: React.FC<WidgetButtonProps>;
15
+ export default WidgetButton;
@@ -0,0 +1,7 @@
1
+ type WidgetMessageBadgeProps = {
2
+ counter: number;
3
+ style?: React.CSSProperties;
4
+ className?: string;
5
+ };
6
+ declare const WidgetMessageBadge: React.FC<WidgetMessageBadgeProps>;
7
+ export default WidgetMessageBadge;
@@ -0,0 +1,7 @@
1
+ type WidgetOnlineBadgeProps = {
2
+ counter: number;
3
+ style?: React.CSSProperties;
4
+ className?: string;
5
+ };
6
+ declare const WidgetOnlineBadge: React.FC<WidgetOnlineBadgeProps>;
7
+ export default WidgetOnlineBadge;
@@ -0,0 +1,33 @@
1
+ import { Config, Users, Auth, Chat, EmptyResponse, PushNotifications } from 'connectycube/types';
2
+ import { PushSubscriptionData } from './notifications';
3
+ export declare const SESSION_KEY = "@connectycube/chat-widget:session";
4
+ export declare const initConnectyCubeSDK: (credentials: Config.Credentials, config?: Config.Options) => void;
5
+ export declare const tryReuseSession: (userName?: string, userId?: string, userAvatar?: string, userProfileLink?: string) => Promise<boolean>;
6
+ export declare const tryRestoreSession: () => Promise<Auth.Session | null>;
7
+ export declare const createUserSession: (login: string, password: string) => Promise<Auth.Session>;
8
+ export declare const createSession: (userId?: string, userName?: string, userAvatar?: string, userProfileLink?: string) => Promise<Auth.Session | null>;
9
+ export declare const destroyUserSession: () => Promise<void>;
10
+ export declare const userSignup: (login: string, password: string, name?: string, externalId?: string, userAvatar?: string, userProfileLink?: string) => Promise<Auth.Session>;
11
+ export declare const chatCredentials: () => Chat.ConnectionParams | null;
12
+ export declare const updateUserProfileIfNeeded: (session: Auth.Session, name?: string, externalId?: string, avatar?: string, userProfileLink?: string) => Promise<Auth.Session>;
13
+ export declare const setSessionToLocalStorage: (session: Auth.Session) => void;
14
+ export declare const getSessionFromLocalStorage: () => Auth.Session | null;
15
+ export declare const clearSessionInLocalStorage: () => void;
16
+ export declare const getCurrentUser: () => Users.User | null | undefined;
17
+ export declare const getUserSettings: () => {
18
+ [key: string]: any;
19
+ } | null;
20
+ export declare const updateUserSettings: (settings: {
21
+ [key: string]: any;
22
+ }) => Promise<Users.User>;
23
+ export declare const getSessionToken: () => string | null;
24
+ export declare const getSessionUserId: () => number | null;
25
+ export declare const isSessionExpired: () => boolean;
26
+ export declare const isUserIdChanged: (userId?: string) => boolean;
27
+ export declare const sha256: (str: string) => Promise<string>;
28
+ export declare const getUserName: (user: Users.User | null | undefined, force?: boolean) => string;
29
+ export declare const getPhotoUrl: (photoOrAvatar?: string | null) => string;
30
+ export declare const generateConnectyCubeLogin: (userId?: string) => string;
31
+ export declare const createUserReport: (reportedUserId: number, reason: string) => Promise<import("connectycube/types").Data.DataRecord>;
32
+ export declare const subscribeToPushNotifications: (pushSubscriptionData?: PushSubscriptionData) => Promise<PushNotifications.Subscription | undefined>;
33
+ export declare const unsubscribeFromPushNotifications: () => Promise<EmptyResponse[]>;
@@ -0,0 +1,3 @@
1
+ export declare function debounce<T extends (...args: any[]) => void>(func: T, delay: number): T & {
2
+ cancel: () => void;
3
+ };
@@ -0,0 +1,2 @@
1
+ import { default as i18n } from 'i18next';
2
+ export default i18n;
@@ -0,0 +1,11 @@
1
+ export type PushSubscriptionData = {
2
+ endpoint: string;
3
+ auth: string;
4
+ p256dh: string;
5
+ } | undefined;
6
+ export declare const requestNotificationPermission: () => Promise<boolean>;
7
+ export declare const registerWidgetServiceWorker: (serviceWorkerPath?: string | URL) => Promise<boolean>;
8
+ export declare const getWidgetServiceWorker: (serviceWorkerPath?: string | URL) => Promise<ServiceWorkerRegistration | void>;
9
+ export declare const getPushManagerSubscriptionData: (subscription?: PushSubscription | null) => PushSubscriptionData;
10
+ export declare const getPushManagerSubscription: (serviceWorkerPath?: string | URL, applicationServerKey?: PushSubscriptionOptionsInit["applicationServerKey"]) => Promise<PushSubscription | null>;
11
+ export declare const unsubscribePushManager: (serviceWorkerPath?: string | URL) => Promise<boolean>;
@@ -0,0 +1,3 @@
1
+ export declare function throttle<T extends (...args: any[]) => void>(func: T, delay: number): T & {
2
+ cancel: () => void;
3
+ };
@@ -0,0 +1,21 @@
1
+ export declare const resetStore: (force?: boolean) => void;
2
+ export { default as useActiveTabsStore } from './store/useActiveTabsStore';
3
+ export { default as useAlertBusyStore } from './store/useAlertBusyStore';
4
+ export { default as useAppDefaultChatStore } from './store/useAppDefaultChatStore';
5
+ export { default as useAppInterfaceStore } from './store/useAppInterfaceStore';
6
+ export { default as useAppSettingsStore } from './store/useAppSettingsStore';
7
+ export { default as useAppNotificationStore } from './store/useAppNotificationStore';
8
+ export { default as useAppQuickActionsStore } from './store/useAppQuickActionsStore';
9
+ export { default as useDraftMessagesStore } from './store/useDraftMessagesStore';
10
+ export { default as useOnlineUsersCountStore } from './store/useOnlineUsersCountStore';
11
+ export { default as useLinkPreviewStore } from './store/useLinkPreviewStore';
12
+ export { default as useProfileStore } from './store/useProfileStore';
13
+ export { default as useShadowRootStore } from './store/useShadowRootStore';
14
+ export { default as useUnreadCountStore } from './store/useUnreadCountStore';
15
+ export { default as useUserSettingsStore } from './store/useUserSettingsStore';
16
+ export { default as useAppAuthorization } from './useAppAuthorization';
17
+ export { default as useLastActivity } from './useLastActivity';
18
+ export { default as useNotification } from './useNotification';
19
+ export { default as usePageFocus } from './usePageFocus';
20
+ export { default as useResizeScreenWidth } from './useResizeScreenWidth';
21
+ export { default as useTypingStatusText } from './useTypingStatusText';
@@ -0,0 +1,15 @@
1
+ export declare enum AppTab {
2
+ CHATS = "chats",
3
+ USERS = "users"
4
+ }
5
+ export interface ActiveTabsStoreState {
6
+ activeTab: AppTab;
7
+ setActiveTab: (activeTab: AppTab) => void;
8
+ resetActiveTab: () => void;
9
+ }
10
+ export declare const activeTabsInitialState: {
11
+ activeTab: AppTab;
12
+ };
13
+ declare const useActiveTabsStore: import('zustand').UseBoundStore<import('zustand').StoreApi<ActiveTabsStoreState>>;
14
+ export declare const resetActiveTabs: () => void;
15
+ export default useActiveTabsStore;
@@ -0,0 +1,11 @@
1
+ type AlertBusyStateProps = {
2
+ visible: boolean;
3
+ title: string;
4
+ };
5
+ interface AlertBusyState extends AlertBusyStateProps {
6
+ showAlertBusy: (title: string) => void;
7
+ hideAlertBusy: () => void;
8
+ }
9
+ declare const useAlertBusyStore: import('zustand').UseBoundStore<import('zustand').StoreApi<AlertBusyState>>;
10
+ export declare const resetAlertBusyStore: () => void;
11
+ export default useAlertBusyStore;
@@ -0,0 +1,21 @@
1
+ export type DefaultChat = {
2
+ id: string;
3
+ opponentUserId: number;
4
+ type: '1on1' | 'group';
5
+ name?: string;
6
+ metadata?: {
7
+ [key: string]: string;
8
+ };
9
+ };
10
+ export type AppDefaultChatStateProps = {
11
+ defaultChat?: DefaultChat | null;
12
+ };
13
+ interface AppDefaultChatState extends AppDefaultChatStateProps {
14
+ setDefaultChat: (defaultChat?: DefaultChat) => void;
15
+ resetDefaultChat: () => void;
16
+ }
17
+ export declare const appDefaultChatInitialState: AppDefaultChatStateProps;
18
+ declare const useDefaultChatStore: import('zustand').UseBoundStore<import('zustand').StoreApi<AppDefaultChatState>>;
19
+ export declare const setAppDefaultChatStore: (state: Partial<AppDefaultChatStateProps>) => void;
20
+ export declare const resetAppDefaultChatStore: () => void;
21
+ export default useDefaultChatStore;
@@ -0,0 +1,27 @@
1
+ export type AppInterfaceStoreProps = {
2
+ opened: boolean;
3
+ splitView: boolean;
4
+ showOnlineUsersTab: boolean;
5
+ hideNewChatButton: boolean;
6
+ hideNewUserChatOption: boolean;
7
+ hideNewGroupChatOption: boolean;
8
+ };
9
+ export interface AppInterfaceStoreState extends AppInterfaceStoreProps {
10
+ setOpened: (opened: boolean) => void;
11
+ setSplitView: (splitView: boolean) => void;
12
+ setShowOnlineUsersTab: (showOnlineUsersTab: boolean) => void;
13
+ setHideNewChatButton: (hideNewChatButton: boolean) => void;
14
+ setHideNewUserChatOption: (hideNewUserChatOption: boolean) => void;
15
+ setHideNewGroupChatOption: (hideNewGroupChatOption: boolean) => void;
16
+ resetOpened: () => void;
17
+ resetSplitView: () => void;
18
+ resetShowOnlineUsersTab: () => void;
19
+ resetHideNewChatButton: () => void;
20
+ resetHideNewUserChatOption: () => void;
21
+ resetHideNewGroupChatOption: () => void;
22
+ }
23
+ export declare const appInterfaceStoreInitialState: AppInterfaceStoreProps;
24
+ declare const useAppInterfaceStore: import('zustand').UseBoundStore<import('zustand').StoreApi<AppInterfaceStoreState>>;
25
+ export declare const setAppInterfaceStore: (state: Partial<AppInterfaceStoreProps>) => void;
26
+ export declare const resetAppInterfaceStore: () => void;
27
+ export default useAppInterfaceStore;
@@ -0,0 +1,34 @@
1
+ type AppNotificationStoreProps = {
2
+ muted: boolean;
3
+ showNotifications: boolean;
4
+ playSound: boolean;
5
+ webPushNotifications: boolean;
6
+ webPushVapidPublicKey?: string;
7
+ serviceWorkerPath?: string | URL;
8
+ };
9
+ export interface AppNotificationStoreState extends AppNotificationStoreProps {
10
+ setMuted: (muted: boolean) => void;
11
+ resetMuted: () => void;
12
+ setShowNotifications: (showNotifications: boolean) => void;
13
+ resetShowNotifications: () => void;
14
+ setPlaySound: (playSound: boolean) => void;
15
+ resetPlaySound: () => void;
16
+ setWebPushNotifications: (webPushNotifications: boolean) => void;
17
+ resetWebPushNotifications: () => void;
18
+ setWebPushVapidPublicKey: (webPushVapidPublicKey?: string) => void;
19
+ resetWebPushVapidPublicKey: () => void;
20
+ setServiceWorkerPath: (serviceWorkerPath?: string | URL) => void;
21
+ resetServiceWorkerPath: () => void;
22
+ }
23
+ export declare const notificationStoreInitialState: {
24
+ muted: boolean;
25
+ showNotifications: boolean;
26
+ playSound: boolean;
27
+ webPushNotifications: boolean;
28
+ webPushVapidPublicKey: undefined;
29
+ serviceWorkerPath: undefined;
30
+ };
31
+ declare const useAppNotificationStore: import('zustand').UseBoundStore<import('zustand').StoreApi<AppNotificationStoreState>>;
32
+ export declare const setAppNotificationStore: (state: Partial<AppNotificationStoreProps>) => void;
33
+ export declare const resetAppNotificationStore: () => void;
34
+ export default useAppNotificationStore;
@@ -0,0 +1,17 @@
1
+ export type QuickActions = {
2
+ title?: string;
3
+ description?: string;
4
+ actions: string[];
5
+ };
6
+ export type AppQuickActionsStoreProps = {
7
+ quickActions: QuickActions;
8
+ };
9
+ export interface AppQuickActionsStoreState extends AppQuickActionsStoreProps {
10
+ setQuickActions: (quickActions: QuickActions) => void;
11
+ resetQuickActions: () => void;
12
+ }
13
+ export declare const quickActionsStoreInitialState: AppQuickActionsStoreProps;
14
+ declare const useAppQuickActionsStore: import('zustand').UseBoundStore<import('zustand').StoreApi<AppQuickActionsStoreState>>;
15
+ export declare const setAppQuickActionsStore: (state: Partial<AppQuickActionsStoreProps>) => void;
16
+ export declare const resetAppQuickActionsStore: () => void;
17
+ export default useAppQuickActionsStore;
@@ -0,0 +1,31 @@
1
+ export type AppSettingStoreProps = {
2
+ attachmentsAccept: string;
3
+ attachmentsAcceptList: string[];
4
+ enableLastSeen: boolean;
5
+ enableContentReporting: boolean;
6
+ enableBlockList: boolean;
7
+ enableUrlPreview: boolean;
8
+ limitUrlsPreviews: number;
9
+ };
10
+ export interface AppSettingStoreState extends AppSettingStoreProps {
11
+ setAttachmentsAccept: (attachmentsAccept: string) => void;
12
+ setEnableLastSeen: (enableLastSeen: boolean) => void;
13
+ setEnableContentReporting: (enableContentReporting: boolean) => void;
14
+ setEnableBlockList: (enableBlockList: boolean) => void;
15
+ setEnableUrlPreview: (enableUrlPreview: boolean) => void;
16
+ setLimitUrlsPreviews: (limitUrlsPreviews: number) => void;
17
+ resetAttachmentsAccept: () => void;
18
+ resetEnableLastSeen: () => void;
19
+ resetEnableContentReporting: () => void;
20
+ resetEnableBlockList: () => void;
21
+ resetEnableUrlPreview: () => void;
22
+ resetLimitUrlsPreviews: () => void;
23
+ isSupportedFile: (file: File) => boolean;
24
+ }
25
+ export declare const appSettingsStoreInitialState: AppSettingStoreProps;
26
+ declare const useAppSettingsStore: import('zustand').UseBoundStore<import('zustand').StoreApi<AppSettingStoreState>>;
27
+ export declare const setAppSettingsStore: (state: Partial<AppSettingStoreProps>) => void;
28
+ export declare const resetAppSettingsStore: () => void;
29
+ export default useAppSettingsStore;
30
+ export declare const getAttachmentsAcceptList: (attachmentsAccept: string) => string[];
31
+ export declare const isSupportedFileMimeType: (file: File, attachmentsAcceptList: AppSettingStoreState["attachmentsAcceptList"]) => boolean;
@@ -0,0 +1,14 @@
1
+ type DraftMessage = {
2
+ [dialogId: string]: string;
3
+ };
4
+ export declare const DRAFT_MESSAGES_KEY = "@connectycube/chat-widget:draftMessages";
5
+ interface DraftMessagesStoreState {
6
+ draftMessages: DraftMessage;
7
+ setDraftMessages: (messages: DraftMessage) => void;
8
+ upsertDraftMessage: (message: DraftMessage) => void;
9
+ deleteDraftMessage: (dialogId: string) => void;
10
+ resetDraftMessages: () => void;
11
+ }
12
+ declare const useDraftMessagesStore: import('zustand').UseBoundStore<import('zustand').StoreApi<DraftMessagesStoreState>>;
13
+ export declare const resetDraftMessagesStore: () => void;
14
+ export default useDraftMessagesStore;
@@ -0,0 +1,17 @@
1
+ export type LinkPreview = {
2
+ url: string;
3
+ title: string;
4
+ images: string[];
5
+ description: string;
6
+ [key: string]: string | string[];
7
+ };
8
+ interface LinkPreviewStore {
9
+ queue: string[];
10
+ urlPreviews: Map<string, LinkPreview>;
11
+ isProcessing: boolean;
12
+ addUrls: (urls: string[]) => void;
13
+ matchUrlsFromMessage: (message: string) => string[];
14
+ }
15
+ declare const useLinkPreviewStore: import('zustand').UseBoundStore<import('zustand').StoreApi<LinkPreviewStore>>;
16
+ export declare const resetLinkPreviewStore: () => void;
17
+ export default useLinkPreviewStore;
@@ -0,0 +1,14 @@
1
+ interface OnlineUsersCountState {
2
+ requestOnlineUsersInterval: number;
3
+ enableOnlineUsersBadge: boolean;
4
+ onlineUsersCount: number;
5
+ setRequestOnlineUsersInterval: (seconds: number) => void;
6
+ setEnableOnlineUsersBadge: (enable: boolean) => void;
7
+ setOnlineUsersCount: (count: number) => void;
8
+ resetRequestOnlineUsersInterval: () => void;
9
+ resetEnableOnlineUsersBadge: () => void;
10
+ resetOnlineUsersCount: () => void;
11
+ }
12
+ declare const useOnlineUsersCountStore: import('zustand').UseBoundStore<import('zustand').StoreApi<OnlineUsersCountState>>;
13
+ export declare const resetOnlineUsersCountStore: () => void;
14
+ export default useOnlineUsersCountStore;
@@ -0,0 +1,9 @@
1
+ interface ProfileState {
2
+ visible: boolean;
3
+ userId?: number;
4
+ showProfile: (userId?: number) => void;
5
+ hideProfile: () => void;
6
+ }
7
+ declare const useProfileStore: import('zustand').UseBoundStore<import('zustand').StoreApi<ProfileState>>;
8
+ export declare const resetProfileStore: () => void;
9
+ export default useProfileStore;
@@ -0,0 +1,7 @@
1
+ export interface useShadowRootStoreState {
2
+ shadowRoot: ShadowRoot | Document;
3
+ shadowPortal: DocumentFragment | Element | null | undefined;
4
+ setShadowRoot: (shadowRoot?: ShadowRoot | Document) => void;
5
+ }
6
+ declare const useShadowRootStore: import('zustand').UseBoundStore<import('zustand').StoreApi<useShadowRootStoreState>>;
7
+ export default useShadowRootStore;
@@ -0,0 +1,8 @@
1
+ interface UnreadCountState {
2
+ unreadCount: number;
3
+ setUnreadCount: (count: number) => void;
4
+ resetUnreadCount: () => void;
5
+ }
6
+ declare const useUnreadCountStore: import('zustand').UseBoundStore<import('zustand').StoreApi<UnreadCountState>>;
7
+ export declare const resetUnreadCountStore: () => void;
8
+ export default useUnreadCountStore;
@@ -0,0 +1,14 @@
1
+ type UserSettingsStateProps = {
2
+ isNotifications: boolean;
3
+ isNotificationSound: boolean;
4
+ isPushNotifications: boolean;
5
+ };
6
+ interface UserSettingsState extends UserSettingsStateProps {
7
+ setIsNotifications: (enabled: boolean) => Promise<void>;
8
+ setIsNotificationSound: (enabled: boolean) => Promise<void>;
9
+ setIsPushNotifications: (enabled: boolean) => Promise<void>;
10
+ }
11
+ declare const useUserSettingsStore: import('zustand').UseBoundStore<import('zustand').StoreApi<UserSettingsState>>;
12
+ export declare const managePushNotificationsSubscription: (enable: boolean) => Promise<boolean>;
13
+ export declare const restoreUserSettingsStore: () => Promise<void>;
14
+ export default useUserSettingsStore;
@@ -0,0 +1,14 @@
1
+ import { Config } from 'connectycube/types';
2
+ type AppUser = {
3
+ id?: string;
4
+ name?: string;
5
+ avatar?: string;
6
+ userProfileLink?: string;
7
+ };
8
+ type AppAuthorizationProps = {
9
+ creds: Config.Credentials;
10
+ config?: Config.Options;
11
+ user?: AppUser;
12
+ };
13
+ declare const useAppAuthorization: ({ creds, config, user }: AppAuthorizationProps) => void;
14
+ export default useAppAuthorization;
@@ -0,0 +1,2 @@
1
+ declare const useLastActivity: () => void;
2
+ export default useLastActivity;
@@ -0,0 +1,8 @@
1
+ import { Chat } from 'connectycube/types';
2
+ type NotificationHook = {
3
+ showNotification: (title: string, body: string, icon: string) => Promise<Notification | void>;
4
+ notifyOnMessage: (userId: number, message: Chat.Message) => Promise<Notification | void>;
5
+ playAudio: () => void;
6
+ };
7
+ declare function useNotification(): NotificationHook;
8
+ export default useNotification;
@@ -0,0 +1,6 @@
1
+ type PageFocusHook = {
2
+ isFocused: boolean;
3
+ isBlurred: boolean;
4
+ };
5
+ declare function usePageFocus(): PageFocusHook;
6
+ export default usePageFocus;
@@ -0,0 +1,10 @@
1
+ type ResizeScreenWidthParams = {
2
+ timeout?: number;
3
+ width?: number;
4
+ };
5
+ type ResizeScreenWidthHook = {
6
+ isWideScreen: boolean;
7
+ isNarrowScreen: boolean;
8
+ };
9
+ declare const useResizeScreenWidth: (params?: ResizeScreenWidthParams) => ResizeScreenWidthHook;
10
+ export default useResizeScreenWidth;
@@ -0,0 +1,3 @@
1
+ import { Dialogs } from 'connectycube/types';
2
+ declare function useTypingStatusText(dialog?: Dialogs.Dialog, reverse?: boolean): string | undefined;
3
+ export default useTypingStatusText;
@@ -0,0 +1 @@
1
+ export { default } from './App';
@@ -0,0 +1,6 @@
1
+ import { Dialogs } from 'connectycube/types';
2
+ import { ClassValue } from 'clsx';
3
+ export declare function cn(...inputs: ClassValue[]): string;
4
+ export declare function createTempChat(id: string, name: string, type: 3 | 2, occupantsIds: number[], currentUserId: number, photo?: string, extensions?: {
5
+ [key: string]: string;
6
+ }): Dialogs.Dialog;
@@ -0,0 +1,65 @@
1
+ declare const _default: {
2
+ "AddMembers": "Προσθήκη μελών",
3
+ "Admin": "Διαχειριστής",
4
+ "areTyping": "είναι",
5
+ "Cancel": "Ακύρωση",
6
+ "ChatName": "Όνομα συνομιλίας",
7
+ "ChatNameRequired": "Το όνομα συνομιλίας είναι υποχρεωτικό",
8
+ "Chat": "Συνομιλία",
9
+ "Chats": "Συνομιλίες",
10
+ "ChooseChat": "Επιλέξτε συνομιλία",
11
+ "continue": "Συνέχεια",
12
+ "CreateGroupChat": "Δημιουργία ομαδικής συνομιλίας",
13
+ "Delete": "Διαγραφή",
14
+ "Draft": "Πρόχειρο",
15
+ "EnterMessage": "Εισάγετε μήνυμα",
16
+ "EnterUserName": "Εισάγετε όνομα χρήστη",
17
+ "ExitChat": "Έξοδος από τη συνομιλία",
18
+ "FileTypeNotSupported": "Η μορφή αρχείου δεν υποστηρίζεται",
19
+ "isTyping": "είναι",
20
+ "me": "εγώ",
21
+ "Members": "Μέλη",
22
+ "members": "μέλη",
23
+ "NewGroup": "Νέα ομάδα",
24
+ "NewMessage": "Νέο μήνυμα",
25
+ "NoChats": "Επιλέξτε κάποιο χρήστη από τη λίστα Χρήστες και ξεκινήστε την πρώτη σας συνομιλία!",
26
+ "NoMessages": "Δεν υπάρχουν μηνύματα",
27
+ "NoOnlineUsers": "Δεν υπάρχουν συνδεδεμένοι χρήστες",
28
+ "Profile": "Προφίλ",
29
+ "RemoveMembers": "Αφαίρεση μελών",
30
+ "RemoveMembers?": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε τα μέλη;",
31
+ "Reset": "Επαναφορά",
32
+ "Search": "Αναζήτηση",
33
+ "Select": "Επιλογή",
34
+ "Send": "Αποστολή",
35
+ "StartChat": "Έναρξη συνομιλίας",
36
+ "NewUserChatDialogTitle": "Αποστολή μηνύματος σε μέλος",
37
+ "NewGroupChatDialogTitle": "Δημιουργία νέας ομάδας",
38
+ "typing": "πληκτρολογεί",
39
+ "Users": "Χρήστες",
40
+ "you": "εσύ",
41
+ "Block": "Block",
42
+ "UnBlock": "Unblock",
43
+ "Report": "Αναφορά",
44
+ "ReportUser": "Αναφορά χρήστη",
45
+ "WhatsWrongWithThisUser": "Τι θέλετε να αναφέρετε για αυτόν το χρήστη;",
46
+ "ProvideReason": "Λόγος αναφοράς",
47
+ "ReportCreatedSuccessfully": "Η αναφορά για το χρήστη έγινε",
48
+ "ReportSubmitFailed": "Σφάλμα στη δημιουργία αναφοράς",
49
+ "MyProfile": "Το προφίλ μου",
50
+ "YouBlocked": "Αυτός ο χρήστης σας έχει κάνει Block",
51
+ "BlockList": "Λίστα Blocked χρηστών",
52
+ "AddToBlockList": "Προσθήκη στη λίστα Blocked",
53
+ "AddToBlockList?": "Σίγουρα θέλετε να προσθέσετε το χρήστη {{name}} στη λίστα Blocked;",
54
+ "RemoveFromBlockList": "Αφαίρεση από τη λίστα Blocked",
55
+ "RemoveFromBlockList?": "Σίγουρα θέλετε να αφαιρέσετε το χρήστη {{name}} από τη λίστα Blocked;",
56
+ "BlockListEmpty": "Η Blocked λίστα είναι άδεια",
57
+ "NotificationSettings": "Ρυθμίσεις ειδοποιήσεων",
58
+ "Notifications": "Ειδοποιήσεις",
59
+ "NotificationSound": "Ήχος ειδοποίησης",
60
+ "PushNotifications": "Ειδοποιήσεις push",
61
+ "PleaseWait": "Παρακαλώ περιμένετε"
62
+ }
63
+ ;
64
+
65
+ export default _default;