@mobilon-dev/chotto 0.3.11 → 0.3.13

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 (63) hide show
  1. package/dist/CreateChat-BLSa6Pvz.js +31 -0
  2. package/dist/CreateChat2-DkcpMfu0.js +42 -0
  3. package/dist/CreateDialog-CRtDbLYn.js +77 -0
  4. package/dist/{ModalVideoRecorder-BM0u4RGq.js → ModalVideoRecorder-DRMD5W4Z.js} +1 -1
  5. package/dist/SelectUser2-DxExoHs-.js +46 -0
  6. package/dist/chotto.css +1 -1
  7. package/dist/{index-BHd0LYyt.js → index-CbPyuani.js} +4842 -4532
  8. package/dist/types/apps/data/index.d.ts +1 -0
  9. package/dist/types/apps/data/themes.d.ts +7 -0
  10. package/dist/types/components/1_icons/AvatarIcon.vue.d.ts +6 -6
  11. package/dist/types/components/2_blocks/CommunicationPanel/CommunicationPanel.vue.d.ts +2 -2
  12. package/dist/types/components/2_blocks/CommunicationPanel/stories/CommunicationPanel.stories.d.ts +2 -2
  13. package/dist/types/components/2_chatinput_elements/PlaceholderComponent/PlaceholderComponent.vue.d.ts +2 -2
  14. package/dist/types/components/2_elements/ContactInfo/ContactInfo.vue.d.ts +2 -2
  15. package/dist/types/components/2_elements/ContactInfo/stories/ContactInfo.stories.d.ts +2 -2
  16. package/dist/types/components/2_modals/CreateDialog/CreateDialog.vue.d.ts +2 -2
  17. package/dist/types/components/2_modals/CreateDialog/stories/CreateDialog.stories.d.ts +2 -2
  18. package/dist/types/components/3_compounds/ChatList/ChatList.vue.d.ts +2 -2
  19. package/dist/types/components/5_containers/BaseContainer/BaseContainer.vue.d.ts +0 -2
  20. package/dist/types/components/5_containers/FloatContainer/FloatContainer.vue.d.ts +0 -2
  21. package/dist/types/components/index.d.ts +0 -4
  22. package/dist/types/functions/formatTimestamp.d.ts +20 -0
  23. package/dist/types/functions/getStatusMessage.d.ts +14 -0
  24. package/dist/types/functions/index.d.ts +5 -0
  25. package/dist/types/functions/insertDaySeparators.d.ts +46 -0
  26. package/dist/types/functions/playNotificationAudio.d.ts +6 -0
  27. package/dist/types/hooks/index.d.ts +2 -9
  28. package/dist/types/hooks/modals/index.d.ts +5 -0
  29. package/dist/types/hooks/uploadFile/index.d.ts +3 -0
  30. package/dist/types/hooks/useMessage.d.ts +69 -1
  31. package/dist/types/hooks/validators/chats/chatValidator.d.ts +21 -0
  32. package/dist/types/hooks/validators/chats/index.d.ts +7 -0
  33. package/dist/types/hooks/validators/chats/types.d.ts +63 -0
  34. package/dist/types/hooks/validators/chats/useChatValidator.d.ts +49 -0
  35. package/dist/types/hooks/validators/index.d.ts +3 -0
  36. package/dist/types/hooks/validators/messages/index.d.ts +7 -0
  37. package/dist/types/hooks/validators/messages/messageValidator.d.ts +21 -0
  38. package/dist/types/hooks/validators/messages/types.d.ts +66 -0
  39. package/dist/types/hooks/validators/messages/useMessageValidator.d.ts +49 -0
  40. package/dist/types/hooks/validators/sidebar/index.d.ts +7 -0
  41. package/dist/types/hooks/validators/sidebar/sidebarValidator.d.ts +21 -0
  42. package/dist/types/hooks/validators/sidebar/types.d.ts +14 -0
  43. package/dist/types/hooks/validators/sidebar/useSidebarValidator.d.ts +45 -0
  44. package/dist/types/index.d.ts +1 -0
  45. package/dist/vuessages.es.js +91 -83
  46. package/dist/vuessages.umd.js +45 -6
  47. package/package.json +1 -1
  48. package/dist/types/apps/helpers/index.d.ts +0 -9
  49. package/dist/types/hooks/formatTimestamp.d.ts +0 -1
  50. package/dist/types/hooks/getStatusMessage.d.ts +0 -2
  51. package/dist/types/hooks/insertDaySeparators.d.ts +0 -3
  52. package/dist/types/hooks/playNotificationAudio.d.ts +0 -1
  53. /package/dist/types/{hooks → components/3_compounds/Feed/functions}/throttle.d.ts +0 -0
  54. /package/dist/types/{apps/helpers → functions}/sortByTimestamp.d.ts +0 -0
  55. /package/dist/types/{apps/helpers → hooks/modals}/useCreateChat.d.ts +0 -0
  56. /package/dist/types/{apps/helpers → hooks/modals}/useCreateChat2.d.ts +0 -0
  57. /package/dist/types/{apps/helpers → hooks/modals}/useCreateDialog.d.ts +0 -0
  58. /package/dist/types/hooks/{useModal.d.ts → modals/useModal.d.ts} +0 -0
  59. /package/dist/types/{apps/helpers → hooks/modals}/useModalSelectUser2.d.ts +0 -0
  60. /package/dist/types/hooks/{useVideoRecorder.d.ts → modals/useVideoRecorder.d.ts} +0 -0
  61. /package/dist/types/hooks/{generatePreview.d.ts → uploadFile/generatePreview.d.ts} +0 -0
  62. /package/dist/types/hooks/{getTypeFileByMime.d.ts → uploadFile/getTypeFileByMime.d.ts} +0 -0
  63. /package/dist/types/hooks/{uploadFile.d.ts → uploadFile/uploadFile.d.ts} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mobilon-dev/chotto",
3
- "version": "0.3.11",
3
+ "version": "0.3.13",
4
4
  "type": "module",
5
5
  "main": "./dist/vuessages.umd.js",
6
6
  "module": "./dist/vuessages.es.js",
@@ -1,9 +0,0 @@
1
- export * from './sortByTimestamp';
2
- export * from './useCreateChat';
3
- export * from './useCreateChat2';
4
- export * from './useCreateDialog';
5
- export * from './useModalSelectUser2';
6
- export { useModalCreateChat } from './useCreateChat';
7
- export { useModalCreateChat2 } from './useCreateChat2';
8
- export { useModalCreateDialog } from './useCreateDialog';
9
- export { useModalSelectUser2 } from './useModalSelectUser2';
@@ -1 +0,0 @@
1
- export declare function formatTimestamp(timestamp: string): string | undefined;
@@ -1,2 +0,0 @@
1
- export declare const statuses: string[];
2
- export declare const getStatus: (status: string) => string;
@@ -1,3 +0,0 @@
1
- export declare const insertDaySeparators: (messages: {
2
- timestamp: number;
3
- }[], outPreviousDay?: number | null) => unknown[];
@@ -1 +0,0 @@
1
- export declare const playNotificationAudio: () => Promise<void>;