0.0.52 • Published 9 days ago

guest-chat-lib v0.0.52

Weekly downloads
-
License
-
Repository
-
Last release
9 days ago

Guest Chat Lib

Streamlined client guest chat library

Installation

Install the package using your preferred package manager:

Using Yarn:

yarn add guest-chat-lib

Using npm:

npm install guest-chat-lib

Setup in your Vue application

Setup in your main.js

import { createApp } from 'vue'
import App from './App.vue'
import GuestChatLib from 'guest-chat-lib'
import 'guest-chat-lib/dist/style.css'

createApp(App).use(GuestChatLib).mount('#app')

Implement the guest-chat-lib in your desired component

<template>
    <GuestChatLib />
</template>

CDN Links are also available

Here's how you will set up:

<head>
    <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
    <script src="https://unpkg.com/guest-chat-lib@<version-here>/dist/guest-chat-lib.umd.js"></script>
    <link rel="stylesheet" href="https://unpkg.com/guest-chat-lib@<version-here>/dist/style.css"/>
</head>
<body>
    <div id="app">
        <guest-chat-lib />
    </div>

    <script>
        Vue.createApp({}).use(GuestChatLib).mount('#app')
    </script>
</body>

Props

Here are the available props that help you customize your Guest Chat widget

apikey: String (required)
primaryColor: String (optional)
secondaryColor: String (optional)
waitingDisplayMessage: String (optional)
appHeader: String (optional)

Example:

<template>
    <GuestChatLib 
        apikey="your-api-key-here"
        primaryColor="#158DE8"
        secondaryColor="#BBDEFB"
        appHeader="Customer Support"
        waitingDisplayMessage="Please be aware that it might take a while to connect with support as there may be a queue. We appreciate your patience."
    />
</template>

Demo

Here's the list of available demos.

HTML Vue

0.0.51

9 days ago

0.0.52

9 days ago

0.0.47

11 days ago

0.0.48

11 days ago

0.0.49

11 days ago

0.0.5

10 days ago

0.0.44

13 days ago

0.0.45

13 days ago

0.0.46

13 days ago

0.0.42

15 days ago

0.0.43

15 days ago

0.0.41

19 days ago

0.0.40

24 days ago

0.0.39

24 days ago

0.0.38

24 days ago

0.0.37

24 days ago

0.0.36

24 days ago

0.0.35

24 days ago

0.0.34

24 days ago

0.0.33

24 days ago

0.0.32

24 days ago

0.0.31

24 days ago

0.0.3

24 days ago

0.0.2

24 days ago

0.0.1

24 days ago