@nlxai/touchpoint-ui 1.0.5-alpha.6 → 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/README.md +17 -17
- package/docs/interfaces/CustomCardProps.md +3 -3
- package/docs/interfaces/CustomCardRowProps.md +3 -3
- package/docs/interfaces/DateInputProps.md +1 -1
- package/docs/interfaces/IconButtonProps.md +5 -5
- package/docs/interfaces/Icons.IconProps.md +2 -2
- package/docs/interfaces/TextButtonProps.md +5 -5
- package/docs/interfaces/Theme.md +25 -25
- package/docs/interfaces/TouchpointConfiguration.md +34 -10
- package/docs/interfaces/TouchpointInstance.md +3 -3
- package/docs/modules/Icons.md +41 -41
- package/lib/components/Input.d.ts +0 -1
- package/lib/components/Messages.d.ts +1 -0
- package/lib/components/ui/Loader.d.ts +1 -0
- package/lib/index.js +3283 -3245
- package/lib/index.umd.js +37 -37
- package/lib/types.d.ts +5 -1
- package/package.json +2 -2
package/lib/types.d.ts
CHANGED
|
@@ -189,6 +189,10 @@ export interface TouchpointConfiguration {
|
|
|
189
189
|
* Specifies whether the agent message has bubbles or not
|
|
190
190
|
*/
|
|
191
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;
|
|
192
196
|
/**
|
|
193
197
|
* Optional theme object to override default theme values
|
|
194
198
|
*/
|
|
@@ -205,5 +209,5 @@ export interface TouchpointConfiguration {
|
|
|
205
209
|
/**
|
|
206
210
|
* Controls the ways in which the user can communicate with the application. Defaults to `"text"`
|
|
207
211
|
*/
|
|
208
|
-
input?: "text" | "voice"
|
|
212
|
+
input?: "text" | "voice";
|
|
209
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
|
}
|