@nlxai/touchpoint-ui 1.0.5-alpha.5 → 1.0.5-alpha.7
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/docs/.nojekyll +1 -0
- package/docs/README.md +367 -0
- package/docs/interfaces/CustomCardProps.md +47 -0
- package/docs/interfaces/CustomCardRowProps.md +39 -0
- package/docs/interfaces/DateInputProps.md +29 -0
- package/docs/interfaces/IconButtonProps.md +71 -0
- package/docs/interfaces/Icons.IconProps.md +29 -0
- package/docs/interfaces/TextButtonProps.md +72 -0
- package/docs/interfaces/Theme.md +303 -0
- package/docs/interfaces/TouchpointConfiguration.md +141 -0
- package/docs/interfaces/TouchpointInstance.md +47 -0
- package/docs/modules/Icons.md +857 -0
- package/lib/components/Input.d.ts +0 -1
- package/lib/components/Messages.d.ts +3 -0
- package/lib/components/ui/Loader.d.ts +1 -0
- package/lib/index.js +3302 -3235
- package/lib/index.umd.js +36 -36
- package/lib/types.d.ts +13 -1
- package/package.json +2 -2
package/lib/types.d.ts
CHANGED
|
@@ -181,6 +181,18 @@ export interface TouchpointConfiguration {
|
|
|
181
181
|
* When set to `false`, no launch button is shown at all. When not set or set to `true`, the default launch icon is rendered.
|
|
182
182
|
*/
|
|
183
183
|
launchIcon?: string | boolean;
|
|
184
|
+
/**
|
|
185
|
+
* Specifies whether the user message has bubbles or not
|
|
186
|
+
*/
|
|
187
|
+
userMessageBubble?: boolean;
|
|
188
|
+
/**
|
|
189
|
+
* Specifies whether the agent message has bubbles or not
|
|
190
|
+
*/
|
|
191
|
+
agentMessageBubble?: boolean;
|
|
192
|
+
/**
|
|
193
|
+
* Enables chat mode, a classic chat experience with inline loaders and the chat history visible at all times.
|
|
194
|
+
*/
|
|
195
|
+
chatMode?: boolean;
|
|
184
196
|
/**
|
|
185
197
|
* Optional theme object to override default theme values
|
|
186
198
|
*/
|
|
@@ -197,5 +209,5 @@ export interface TouchpointConfiguration {
|
|
|
197
209
|
/**
|
|
198
210
|
* Controls the ways in which the user can communicate with the application. Defaults to `"text"`
|
|
199
211
|
*/
|
|
200
|
-
input?: "text" | "voice"
|
|
212
|
+
input?: "text" | "voice";
|
|
201
213
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nlxai/touchpoint-ui",
|
|
3
|
-
"version": "1.0.5-alpha.
|
|
3
|
+
"version": "1.0.5-alpha.7",
|
|
4
4
|
"description": "Web UI for Touchpoint",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"publishConfig": {
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "58311dbd2b53f693d7676d9e218a7602111378c0"
|
|
61
61
|
}
|