favesalon-embed 1.0.10 → 1.0.12
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.
- package/dist/favesalon-embed/activate-form.entry.js +1 -1
- package/dist/favesalon-embed/change-password-form.entry.js +1 -1
- package/dist/favesalon-embed/chat-box.entry.js +2 -3
- package/dist/favesalon-embed/chat-button.entry.js +3 -4
- package/dist/favesalon-embed/chat-form.entry.js +17 -2
- package/dist/favesalon-embed/chat-messages.entry.js +28 -6
- package/dist/favesalon-embed/chat-rooms.entry.js +1 -1
- package/dist/favesalon-embed/favesalon-embed.esm.js +1 -1
- package/dist/favesalon-embed/login-form.entry.js +1 -1
- package/dist/favesalon-embed/notify-sounds.entry.js +1 -1
- package/dist/favesalon-embed/register-form.entry.js +1 -1
- package/dist/favesalon-embed/reset-password-form.entry.js +1 -1
- package/dist/favesalon-embed/salon-info.entry.js +1 -1
- package/dist/favesalon-embed/salon-latest-reviews.entry.js +1 -1
- package/dist/favesalon-embed/salon-latest-styles.entry.js +1 -1
- package/dist/favesalon-embed/salon-locations.entry.js +1 -1
- package/dist/favesalon-embed/salon-lookbook.entry.js +1 -1
- package/dist/favesalon-embed/salon-reviews.entry.js +1 -1
- package/dist/favesalon-embed/salon-schedules.entry.js +1 -1
- package/dist/favesalon-embed/salon-services.entry.js +1 -1
- package/dist/favesalon-embed/salon-stylists.entry.js +1 -1
- package/dist/favesalon-embed/services-03ade050.js +23937 -0
- package/dist/favesalon-embed/services-27cdc67e.js +23941 -0
- package/dist/favesalon-embed/services-65857ef2.js +23938 -0
- package/dist/favesalon-embed/services-8bd6c064.js +23939 -0
- package/dist/favesalon-embed/services-b6e1fae2.js +23949 -0
- package/dist/favesalon-embed/services-ece4767f.js +23929 -0
- package/dist/favesalon-embed/services-fe3439c8.js +23942 -0
- package/dist/favesalon-embed/style-detail.entry.js +1 -1
- package/dist/types/components/chat-form/index.d.ts +1 -0
- package/dist/types/components/chat-messages/index.d.ts +2 -0
- package/dist/types/services/services.d.ts +1 -0
- package/package.json +1 -1
- package/dist/favesalon-embed/app-globals-0acc05ce.js +0 -7
- package/dist/favesalon-embed/index-08aeafb8.js +0 -3371
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { r as registerInstance, h } from './index-888e99e3.js';
|
|
2
|
-
import { d as dayjs_min, H as HttpService, i as isVideoMedia, g as getSalonImage, s as shortDateYearFormat } from './services-
|
|
2
|
+
import { d as dayjs_min, H as HttpService, i as isVideoMedia, g as getSalonImage, s as shortDateYearFormat } from './services-ece4767f.js';
|
|
3
3
|
import { r as relativeTime } from './relativeTime-268e64b0.js';
|
|
4
4
|
import { C as Colors } from './colors-ea36347a.js';
|
|
5
5
|
import './_commonjsHelpers-a4f66ccd.js';
|
|
@@ -5,8 +5,10 @@ export declare class ChatMessages {
|
|
|
5
5
|
receiver: User;
|
|
6
6
|
messages: ChatMessage[];
|
|
7
7
|
chatRoomId: string;
|
|
8
|
+
isScrollIconVisible: boolean;
|
|
8
9
|
componentDidLoad(): void;
|
|
9
10
|
componentDidUpdate(): void;
|
|
11
|
+
onScroll(evt: any): void;
|
|
10
12
|
private markMessagesAsRead;
|
|
11
13
|
private scrollToLastMessage;
|
|
12
14
|
private renderMessage;
|
|
@@ -78,6 +78,7 @@ declare class HttpService {
|
|
|
78
78
|
createChatRoom(receiverId: any, accessToken: any): Promise<any>;
|
|
79
79
|
private fetchRooms;
|
|
80
80
|
fetchChatRooms(accessToken: string): any;
|
|
81
|
+
updateChatroomInfo(roomId: any, options: any): Promise<void>;
|
|
81
82
|
fetchChatMessages(roomId: any, onDone: any): Promise<{}>;
|
|
82
83
|
markMessagesAsRead(roomId: any, roomMessages: ChatMessage[]): Promise<void>;
|
|
83
84
|
sendChatMessage(options: any): Promise<{
|
package/package.json
CHANGED