@chat21/chat21-ionic 3.0.70-rc.2 → 3.0.70
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/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -4,10 +4,20 @@
|
|
|
4
4
|
>
|
|
5
5
|
> ***Use [Docker Compose Tiledesk installation](https://github.com/Tiledesk/tiledesk-deployment/blob/master/docker-compose/README.md) guide***
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
# Introduction
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
Chat21 is the core of the open source live chat platform [Tiledesk.com](http://www.tiledesk.com). Tiledesk is an Open Source Live Chat platform with integrated Chatbots written in NodeJs and Express. Build your own customer support with a multi-channel platform for Web, Android and iOS.
|
|
10
|
+
|
|
11
|
+
Designed to be open source since the beginning, we actively worked on it to create a totally new, first class customer service platform based on instant messaging.
|
|
12
|
+
|
|
13
|
+
What is Tiledesk today? It became the open source “conversational app development” platform that everyone needs 😌
|
|
14
|
+
|
|
15
|
+
You can use Tiledesk to increase sales for your website or for post-sales customer service. Every conversation can be automated using our first class native chatbot technology. You can also connect your own applications using our APIs or Webhooks. Moreover you can deploy entire visual applications inside a conversation. And your applications can converse with your chatbots or your end-users! We know this is cool 😎
|
|
16
|
+
|
|
17
|
+
Tiledesk is multichannel in a totally new way. You can write your chatbot scripts with images, buttons and other cool elements that your channels support. But you will configureyour chatbot replies only once. They will run on every channel, auto-adapting the responses to the target channel whatever it is, Whatsapp, Facebook Messenger, Telegram etc.
|
|
18
|
+
|
|
19
|
+
# Community? Questions? Support?
|
|
20
|
+
If you need help or just want to hang out, come, say hi on our [<img width="15" alt="Tiledesk discord" src="https://seeklogo.com/images/D/discord-color-logo-E5E6DFEF80-seeklogo.com.png"> Discord](https://discord.gg/nERZEZ7SmG) server.
|
|
11
21
|
|
|
12
22
|
# Features #
|
|
13
23
|
With Chat21-ionic you can:
|
|
@@ -188,4 +198,4 @@ To auto login pass the JWT token as a query parameter of your Chat url as in the
|
|
|
188
198
|
|
|
189
199
|
"http://localhost:8100/#/conversation-detail?jwt=<JWT_TOKEN>"
|
|
190
200
|
|
|
191
|
-
```
|
|
201
|
+
```
|
package/package.json
CHANGED
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
(onBackButton)=onBackButtonFN($event)>
|
|
16
16
|
</app-option-header>
|
|
17
17
|
</ion-header>
|
|
18
|
-
|
|
19
|
-
<ion-content id="convs-list" #ioncontentconvlist class="list-avatar-page"
|
|
18
|
+
<!-- appScrollbarTheme -->
|
|
19
|
+
<ion-content id="convs-list" #ioncontentconvlist class="list-avatar-page" >
|
|
20
20
|
<!-- class="ps" style="position: relative; max-width: 600px; max-height: 100%;" [perfectScrollbar]="config" -->
|
|
21
21
|
<div id="scrollbar2">
|
|
22
22
|
<ion-list>
|
|
@@ -6,6 +6,30 @@ ion-header {
|
|
|
6
6
|
border-bottom-width: thin;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
+
ion-content {
|
|
10
|
+
// overwrite inline styles
|
|
11
|
+
--offset-bottom: auto!important;
|
|
12
|
+
--overflow: hidden;
|
|
13
|
+
overflow: scroll;
|
|
14
|
+
|
|
15
|
+
&::-webkit-scrollbar {
|
|
16
|
+
width: 6px;
|
|
17
|
+
height: 8px;
|
|
18
|
+
display: none;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&::-webkit-scrollbar-track {
|
|
22
|
+
background: #f9f9f9;
|
|
23
|
+
}
|
|
24
|
+
&::-webkit-scrollbar-thumb {
|
|
25
|
+
background-color: #b9b9b9;
|
|
26
|
+
border-radius: 0px;
|
|
27
|
+
}
|
|
28
|
+
&::-webkit-scrollbar-thumb:hover {
|
|
29
|
+
background-color: #727272;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
9
33
|
ion-list {
|
|
10
34
|
display: block;
|
|
11
35
|
margin-block-start: 1em;
|