@tmls-ai/support 0.1.7 → 0.1.8
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/dist/index.js +8 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -370,7 +370,14 @@ function SupportWidget(props) {
|
|
|
370
370
|
background: accent,
|
|
371
371
|
color: "#fff",
|
|
372
372
|
fontSize: 22,
|
|
373
|
-
boxShadow: "0 4px 16px rgba(0,0,0,0.35)"
|
|
373
|
+
boxShadow: "0 4px 16px rgba(0,0,0,0.35)",
|
|
374
|
+
// Center the ×/? glyph in the circle. Without flex centering the glyph
|
|
375
|
+
// renders as baseline-aligned inline text and sits visibly off-center.
|
|
376
|
+
display: "flex",
|
|
377
|
+
alignItems: "center",
|
|
378
|
+
justifyContent: "center",
|
|
379
|
+
lineHeight: 1,
|
|
380
|
+
padding: 0
|
|
374
381
|
};
|
|
375
382
|
return /* @__PURE__ */ jsxs("div", { "data-tmls-support-root": "true", style: { position: "fixed", bottom: 20, right: 20, zIndex: 2147483e3, fontFamily: "system-ui, sans-serif" }, children: [
|
|
376
383
|
open && /* @__PURE__ */ jsxs("div", { style: panelStyle, children: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tmls-ai/support",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Embeddable Timeless support widget — bottom-right report overlay (type / severity / screenshot) + ticket thread. Auto-captures context, talks to tmls-support-api.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|