@nlxai/touchpoint-ui 1.0.4-alpha.2 → 1.0.4-alpha.3
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/lib/App.d.ts +9 -2
- package/lib/components/ChatHeader.d.ts +2 -2
- package/lib/components/ChatSettings.d.ts +1 -4
- package/lib/components/ui/LaunchButton.d.ts +1 -0
- package/lib/index.js +1860 -1888
- package/lib/index.umd.js +38 -38
- package/lib/types.d.ts +8 -4
- package/package.json +2 -2
- package/tailwind.config.js +2 -2
package/lib/types.d.ts
CHANGED
|
@@ -8,10 +8,6 @@ export type WindowSize = "half" | "full";
|
|
|
8
8
|
* Color mode configuration (light/dark modes)
|
|
9
9
|
*/
|
|
10
10
|
export type ColorMode = "light" | "dark";
|
|
11
|
-
/**
|
|
12
|
-
* Logo URL if applicable. May be specified as a single image URL or as an object by color mode (light/dark)
|
|
13
|
-
*/
|
|
14
|
-
export type LogoUrl = string | Record<ColorMode, string>;
|
|
15
11
|
/**
|
|
16
12
|
* Choice message with metadata
|
|
17
13
|
*/
|
|
@@ -135,4 +131,12 @@ export interface Theme {
|
|
|
135
131
|
* Secondary error color
|
|
136
132
|
*/
|
|
137
133
|
errorSecondary: string;
|
|
134
|
+
/**
|
|
135
|
+
* Inner border radius: used for most buttons
|
|
136
|
+
*/
|
|
137
|
+
innerBorderRadius: string;
|
|
138
|
+
/**
|
|
139
|
+
* Outer border radius: generally used for elements that contain buttons that have inner border radius. Also used by the launch button.
|
|
140
|
+
*/
|
|
141
|
+
outerBorderRadius: string;
|
|
138
142
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nlxai/touchpoint-ui",
|
|
3
|
-
"version": "1.0.4-alpha.
|
|
3
|
+
"version": "1.0.4-alpha.3",
|
|
4
4
|
"description": "Web UI for Touchpoint",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"publishConfig": {
|
|
57
57
|
"access": "public"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "cb23bacfa67ca5522b9e7943217a7b9c9005f791"
|
|
60
60
|
}
|