@mindly/ui-components 3.3.3 → 3.4.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 (44) hide show
  1. package/dist/cjs/index.js +30 -30
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/index.d.ts +12 -0
  4. package/dist/cjs/types/lib/Chat/ChatListItem/ChatListItem.d.ts +9 -0
  5. package/dist/cjs/types/lib/Chat/ChatListItem/ChatListItem.style.d.ts +10 -0
  6. package/dist/cjs/types/lib/Chat/ChatListItem/index.d.ts +1 -0
  7. package/dist/cjs/types/lib/Chat/ChatListSkeleton/ChatListSkeleton.d.ts +3 -0
  8. package/dist/cjs/types/lib/Chat/ChatListSkeleton/ChatListSkeleton.style.d.ts +9 -0
  9. package/dist/cjs/types/lib/Chat/ChatListSkeleton/index.d.ts +1 -0
  10. package/dist/cjs/types/lib/Chat/ChatMessage/ChatMessage.d.ts +8 -0
  11. package/dist/cjs/types/lib/Chat/ChatMessage/ChatMessage.style.d.ts +10 -0
  12. package/dist/cjs/types/lib/Chat/ChatMessage/index.d.ts +1 -0
  13. package/dist/cjs/types/lib/Chat/ChatMessageSkeleton/ChatMessageSkeleton.d.ts +3 -0
  14. package/dist/cjs/types/lib/Chat/ChatMessageSkeleton/ChatMessageSkeleton.style.d.ts +2 -0
  15. package/dist/cjs/types/lib/Chat/ChatMessageSkeleton/index.d.ts +1 -0
  16. package/dist/cjs/types/lib/Chat/EmptyChatList/EmptyChatList.d.ts +10 -0
  17. package/dist/cjs/types/lib/Chat/EmptyChatList/EmptyChatList.style.d.ts +7 -0
  18. package/dist/cjs/types/lib/Chat/EmptyChatList/index.d.ts +1 -0
  19. package/dist/cjs/types/lib/Chat/EmptyChatMessages/EmptyChatMessages.d.ts +7 -0
  20. package/dist/cjs/types/lib/Chat/EmptyChatMessages/EmptyChatMessages.style.d.ts +3 -0
  21. package/dist/cjs/types/lib/Chat/EmptyChatMessages/index.d.ts +1 -0
  22. package/dist/esm/index.js +4 -4
  23. package/dist/esm/index.js.map +1 -1
  24. package/dist/esm/types/index.d.ts +12 -0
  25. package/dist/esm/types/lib/Chat/ChatListItem/ChatListItem.d.ts +9 -0
  26. package/dist/esm/types/lib/Chat/ChatListItem/ChatListItem.style.d.ts +10 -0
  27. package/dist/esm/types/lib/Chat/ChatListItem/index.d.ts +1 -0
  28. package/dist/esm/types/lib/Chat/ChatListSkeleton/ChatListSkeleton.d.ts +3 -0
  29. package/dist/esm/types/lib/Chat/ChatListSkeleton/ChatListSkeleton.style.d.ts +9 -0
  30. package/dist/esm/types/lib/Chat/ChatListSkeleton/index.d.ts +1 -0
  31. package/dist/esm/types/lib/Chat/ChatMessage/ChatMessage.d.ts +8 -0
  32. package/dist/esm/types/lib/Chat/ChatMessage/ChatMessage.style.d.ts +10 -0
  33. package/dist/esm/types/lib/Chat/ChatMessage/index.d.ts +1 -0
  34. package/dist/esm/types/lib/Chat/ChatMessageSkeleton/ChatMessageSkeleton.d.ts +3 -0
  35. package/dist/esm/types/lib/Chat/ChatMessageSkeleton/ChatMessageSkeleton.style.d.ts +2 -0
  36. package/dist/esm/types/lib/Chat/ChatMessageSkeleton/index.d.ts +1 -0
  37. package/dist/esm/types/lib/Chat/EmptyChatList/EmptyChatList.d.ts +10 -0
  38. package/dist/esm/types/lib/Chat/EmptyChatList/EmptyChatList.style.d.ts +7 -0
  39. package/dist/esm/types/lib/Chat/EmptyChatList/index.d.ts +1 -0
  40. package/dist/esm/types/lib/Chat/EmptyChatMessages/EmptyChatMessages.d.ts +7 -0
  41. package/dist/esm/types/lib/Chat/EmptyChatMessages/EmptyChatMessages.style.d.ts +3 -0
  42. package/dist/esm/types/lib/Chat/EmptyChatMessages/index.d.ts +1 -0
  43. package/dist/index.d.ts +35 -1
  44. package/package.json +1 -1
@@ -49,3 +49,15 @@ export { default as MediaPlayer } from './lib/AgoraMediaPlayer';
49
49
  export * from './lib/AgoraMediaPlayer';
50
50
  export { default as RoundButton } from './lib/RoundButton';
51
51
  export * from './lib/RoundButton';
52
+ export { default as ChatListItem } from './lib/Chat/ChatListItem';
53
+ export * from './lib/Chat/ChatListItem';
54
+ export { default as ChatMessage } from './lib/Chat/ChatMessage';
55
+ export * from './lib/Chat/ChatMessage';
56
+ export { default as ChatMessageSkeleton } from './lib/Chat/ChatMessageSkeleton';
57
+ export * from './lib/Chat/ChatMessageSkeleton';
58
+ export { default as ChatListSkeleton } from './lib/Chat/ChatListSkeleton';
59
+ export * from './lib/Chat/ChatListSkeleton';
60
+ export { default as EmptyChatList } from './lib/Chat/EmptyChatList';
61
+ export * from './lib/Chat/EmptyChatList';
62
+ export { default as EmptyChatMessages } from './lib/Chat/EmptyChatMessages';
63
+ export * from './lib/Chat/EmptyChatMessages';
@@ -0,0 +1,9 @@
1
+ import { FC } from 'react';
2
+ declare type ChatListItemProps = {
3
+ href: string;
4
+ name: string;
5
+ message: string;
6
+ avatar?: string;
7
+ };
8
+ declare const ChatListItem: FC<ChatListItemProps>;
9
+ export default ChatListItem;
@@ -0,0 +1,10 @@
1
+ /// <reference types="react" />
2
+ export declare const IonItemStyled: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Pick<import("@ionic/core/dist/types/components").JSX.IonItem, "button" | "type" | "disabled" | "color" | "download" | "href" | "rel" | "target" | "mode" | "fill" | "lines" | "routerAnimation" | "shape" | "counter" | "counterFormatter" | "detail" | "detailIcon"> & {
3
+ routerLink?: string | undefined;
4
+ routerDirection?: "none" | "root" | "forward" | "back" | undefined;
5
+ routerOptions?: import("@ionic/react").RouterOptions | undefined;
6
+ routerAnimation?: import("@ionic/react").AnimationBuilder | undefined;
7
+ } & Pick<import("react").HTMLAttributes<HTMLIonItemElement>, "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("@ionic/react/dist/types/components/IonicReactProps").IonicReactProps & import("react").RefAttributes<HTMLIonItemElement>>, any, {}, never>;
8
+ export declare const InfoWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
9
+ export declare const UserName: import("styled-components").StyledComponent<"div", any, {}, never>;
10
+ export declare const LastMessage: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1 @@
1
+ export { default } from './ChatListItem';
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const ChatListSkeleton: () => JSX.Element;
3
+ export default ChatListSkeleton;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ export declare const SkeletonWrapper: import("styled-components").StyledComponent<"ul", any, {}, never>;
3
+ export declare const SkeletonTextWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
4
+ export declare const IonItemStyled: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Pick<import("@ionic/core/dist/types/components").JSX.IonItem, "button" | "type" | "disabled" | "color" | "download" | "href" | "rel" | "target" | "mode" | "fill" | "lines" | "routerAnimation" | "shape" | "counter" | "counterFormatter" | "detail" | "detailIcon"> & {
5
+ routerLink?: string | undefined;
6
+ routerDirection?: "none" | "root" | "forward" | "back" | undefined;
7
+ routerOptions?: import("@ionic/react").RouterOptions | undefined;
8
+ routerAnimation?: import("@ionic/react").AnimationBuilder | undefined;
9
+ } & Pick<import("react").HTMLAttributes<HTMLIonItemElement>, "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("@ionic/react/dist/types/components/IonicReactProps").IonicReactProps & import("react").RefAttributes<HTMLIonItemElement>>, any, {}, never>;
@@ -0,0 +1 @@
1
+ export { default } from './ChatListSkeleton';
@@ -0,0 +1,8 @@
1
+ import { FC } from 'react';
2
+ declare type ChatMessageProps = {
3
+ name: string;
4
+ message: string;
5
+ avatar?: string;
6
+ };
7
+ declare const ChatMessage: FC<ChatMessageProps>;
8
+ export default ChatMessage;
@@ -0,0 +1,10 @@
1
+ /// <reference types="react" />
2
+ export declare const IonItemStyled: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Pick<import("@ionic/core/dist/types/components").JSX.IonItem, "button" | "type" | "disabled" | "color" | "download" | "href" | "rel" | "target" | "mode" | "fill" | "lines" | "routerAnimation" | "shape" | "counter" | "counterFormatter" | "detail" | "detailIcon"> & {
3
+ routerLink?: string | undefined;
4
+ routerDirection?: "none" | "root" | "forward" | "back" | undefined;
5
+ routerOptions?: import("@ionic/react").RouterOptions | undefined;
6
+ routerAnimation?: import("@ionic/react").AnimationBuilder | undefined;
7
+ } & Pick<import("react").HTMLAttributes<HTMLIonItemElement>, "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("@ionic/react/dist/types/components/IonicReactProps").IonicReactProps & import("react").RefAttributes<HTMLIonItemElement>>, any, {}, never>;
8
+ export declare const MessageWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
9
+ export declare const MessageUserName: import("styled-components").StyledComponent<"div", any, {}, never>;
10
+ export declare const MessageText: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1 @@
1
+ export { default } from './ChatMessage';
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const ChatMessageSkeleton: () => JSX.Element;
3
+ export default ChatMessageSkeleton;
@@ -0,0 +1,2 @@
1
+ export declare const SkeletonWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export declare const SkeletonTextWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1 @@
1
+ export { default } from './ChatMessageSkeleton';
@@ -0,0 +1,10 @@
1
+ import { FC } from 'react';
2
+ declare type EmptyChatList = {
3
+ title?: string;
4
+ text?: string;
5
+ widthLink?: boolean;
6
+ linkTitle?: string;
7
+ onClick?: () => void;
8
+ };
9
+ declare const EmptyChatList: FC<EmptyChatList>;
10
+ export default EmptyChatList;
@@ -0,0 +1,7 @@
1
+ export declare const EmptyWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export declare const SkeletonWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
3
+ export declare const SkeletonText: import("styled-components").StyledComponent<"div", any, {}, never>;
4
+ export declare const SkeletonWrapperContent: import("styled-components").StyledComponent<"div", any, {}, never>;
5
+ export declare const Title: import("styled-components").StyledComponent<"h3", any, {}, never>;
6
+ export declare const EmptyMessage: import("styled-components").StyledComponent<"div", any, {}, never>;
7
+ export declare const ButtonWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1 @@
1
+ export { default } from './EmptyChatList';
@@ -0,0 +1,7 @@
1
+ import { FC } from 'react';
2
+ declare type EmptyChatMessagesProps = {
3
+ title?: string;
4
+ text: string;
5
+ };
6
+ declare const EmptyChatMessages: FC<EmptyChatMessagesProps>;
7
+ export default EmptyChatMessages;
@@ -0,0 +1,3 @@
1
+ export declare const EmptyWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export declare const EmptyTitle: import("styled-components").StyledComponent<"h3", any, {}, never>;
3
+ export declare const EmptyMessage: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1 @@
1
+ export { default } from './EmptyChatMessages';
package/dist/index.d.ts CHANGED
@@ -446,4 +446,38 @@ declare type RoundButtonPropsType = {
446
446
  };
447
447
  declare const RoundButton: React.FC<RoundButtonPropsType>;
448
448
 
449
- export { AppHeader, ArchivedConsultationCard, Avatar, AvatarProps, Button, ConsultationCard, ConsultationCardProps, ConsultationCardSkeleton, Container, ContentCard, DatePicker, DateTimeType, DayOfWeeks, DayToRender, EntryNotFound, EntryNotFoundProps, FloatingButton, FooterForBooking, HorizontalCalendar, HorizontalCalendarProps, ImageWithFallback, ImpressionEmojiEnum, Input, _default$2 as LetterAvatar, ListButton, ListSelect, AgoraMediaPlayer as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotesCardText, NotesEditor, _default$1 as PersonDateTimeCard, Range, RoundButton, RowSelect, ScrollTabs, Segment, SegmentType, _default as SelectImpressionEmoji, StatusTag, TabBar, TherapistCard, TherapistInformationComponent, Toggle, UsersPsychologistScrollList, YourLocalTimeBlock, toast };
449
+ declare type ChatListItemProps = {
450
+ href: string;
451
+ name: string;
452
+ message: string;
453
+ avatar?: string;
454
+ };
455
+ declare const ChatListItem: FC<ChatListItemProps>;
456
+
457
+ declare type ChatMessageProps = {
458
+ name: string;
459
+ message: string;
460
+ avatar?: string;
461
+ };
462
+ declare const ChatMessage: FC<ChatMessageProps>;
463
+
464
+ declare const ChatMessageSkeleton: () => JSX.Element;
465
+
466
+ declare const ChatListSkeleton: () => JSX.Element;
467
+
468
+ declare type EmptyChatList = {
469
+ title?: string;
470
+ text?: string;
471
+ widthLink?: boolean;
472
+ linkTitle?: string;
473
+ onClick?: () => void;
474
+ };
475
+ declare const EmptyChatList: FC<EmptyChatList>;
476
+
477
+ declare type EmptyChatMessagesProps = {
478
+ title?: string;
479
+ text: string;
480
+ };
481
+ declare const EmptyChatMessages: FC<EmptyChatMessagesProps>;
482
+
483
+ export { AppHeader, ArchivedConsultationCard, Avatar, AvatarProps, Button, ChatListItem, ChatListSkeleton, ChatMessage, ChatMessageSkeleton, ConsultationCard, ConsultationCardProps, ConsultationCardSkeleton, Container, ContentCard, DatePicker, DateTimeType, DayOfWeeks, DayToRender, EmptyChatList, EmptyChatMessages, EntryNotFound, EntryNotFoundProps, FloatingButton, FooterForBooking, HorizontalCalendar, HorizontalCalendarProps, ImageWithFallback, ImpressionEmojiEnum, Input, _default$2 as LetterAvatar, ListButton, ListSelect, AgoraMediaPlayer as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotesCardText, NotesEditor, _default$1 as PersonDateTimeCard, Range, RoundButton, RowSelect, ScrollTabs, Segment, SegmentType, _default as SelectImpressionEmoji, StatusTag, TabBar, TherapistCard, TherapistInformationComponent, Toggle, UsersPsychologistScrollList, YourLocalTimeBlock, toast };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "3.3.3",
3
+ "version": "3.4.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "react-scripts start",