@nlxai/touchpoint-ui 1.0.5-alpha.4 → 1.0.5-alpha.6
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 +117 -0
- package/docs/interfaces/TouchpointInstance.md +47 -0
- package/docs/modules/Icons.md +857 -0
- package/lib/components/Messages.d.ts +2 -0
- package/lib/index.js +189 -160
- package/lib/index.umd.js +12 -12
- package/lib/types.d.ts +8 -0
- package/package.json +2 -2
package/lib/types.d.ts
CHANGED
|
@@ -181,6 +181,14 @@ 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;
|
|
184
192
|
/**
|
|
185
193
|
* Optional theme object to override default theme values
|
|
186
194
|
*/
|
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.6",
|
|
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": "2c1daa9b06c19ec11d0568f15cba44c1e623e265"
|
|
61
61
|
}
|