@voxket-ai/voxket-live 1.0.104 → 1.0.105
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.cjs +123 -28
- package/dist/index.js +101 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8703,7 +8703,7 @@ function cp(e = {}) {
|
|
|
8703
8703
|
};
|
|
8704
8704
|
}
|
|
8705
8705
|
const dp = {
|
|
8706
|
-
card: "relative bg-gradient-to-br from-slate-950 via-slate-900 to-gray-950
|
|
8706
|
+
card: "relative bg-gradient-to-br from-slate-950 via-slate-900 to-gray-950 w-full h-full flex flex-col justify-between overflow-hidden mx-auto my-auto rounded-2xl shadow-2xl",
|
|
8707
8707
|
cardTopGradient: "pointer-events-none absolute top-0 left-0 w-full h-10 z-10 bg-gradient-to-b from-slate-950/95 to-transparent",
|
|
8708
8708
|
cardRadial: "absolute inset-0 bg-[radial-gradient(ellipse_at_center,_var(--tw-gradient-stops))] from-indigo-900/20 via-transparent to-transparent",
|
|
8709
8709
|
cardPurpleBlur: "absolute top-0 right-0 w-32 h-32 bg-gradient-to-br from-purple-600/20 to-transparent rounded-full blur-2xl",
|
|
@@ -8783,7 +8783,7 @@ const dp = {
|
|
|
8783
8783
|
mutedIndicator: "bg-red-600/80 text-white"
|
|
8784
8784
|
}
|
|
8785
8785
|
}, up = {
|
|
8786
|
-
card: "relative bg-gradient-to-br from-sky-50 via-white to-indigo-50
|
|
8786
|
+
card: "relative bg-gradient-to-br from-sky-50 via-white to-indigo-50 w-full h-full flex flex-col justify-between overflow-hidden mx-auto my-auto rounded-2xl shadow-2xl",
|
|
8787
8787
|
cardTopGradient: "pointer-events-none absolute top-0 left-0 w-full h-10 z-10 bg-gradient-to-b from-sky-50/95 to-transparent",
|
|
8788
8788
|
cardRadial: "absolute inset-0 bg-[radial-gradient(ellipse_at_center,_var(--tw-gradient-stops))] from-blue-400/8 via-transparent to-transparent",
|
|
8789
8789
|
cardPurpleBlur: "absolute top-0 right-0 w-32 h-32 bg-gradient-to-br from-violet-400/15 to-transparent rounded-full blur-2xl",
|
|
@@ -8863,7 +8863,7 @@ const dp = {
|
|
|
8863
8863
|
mutedIndicator: "bg-red-600/80 text-white"
|
|
8864
8864
|
}
|
|
8865
8865
|
}, fp = {
|
|
8866
|
-
card: "relative bg-gradient-to-br from-[#0a0a1a] via-[#171727] to-[#0f0f23]
|
|
8866
|
+
card: "relative bg-gradient-to-br from-[#0a0a1a] via-[#171727] to-[#0f0f23] w-full h-full flex flex-col items-center justify-between overflow-hidden mx-auto my-auto rounded-2xl shadow-2xl",
|
|
8867
8867
|
cardTopGradient: "pointer-events-none absolute top-0 left-0 w-full h-10 z-10 bg-gradient-to-b from-[#0a0a1a]/95 to-transparent",
|
|
8868
8868
|
cardRadial: "absolute inset-0 bg-[radial-gradient(ellipse_at_center,_var(--tw-gradient-stops))] from-[#3B82F6]/20 via-transparent to-transparent",
|
|
8869
8869
|
cardPurpleBlur: "absolute top-0 right-0 w-32 h-32 bg-gradient-to-br from-[#8B5CF6]/30 to-transparent rounded-full blur-2xl",
|
|
@@ -17261,6 +17261,101 @@ div[class*="fixed"][class*="z-[9999]"] {
|
|
|
17261
17261
|
box-sizing: border-box !important;
|
|
17262
17262
|
}
|
|
17263
17263
|
|
|
17264
|
+
/* Remove unwanted white borders */
|
|
17265
|
+
.voxket-widget-root,
|
|
17266
|
+
.voxket-widget-root .border-white,
|
|
17267
|
+
.voxket-widget-root [class*="border-white"] {
|
|
17268
|
+
border-color: transparent !important;
|
|
17269
|
+
}
|
|
17270
|
+
|
|
17271
|
+
.voxket-widget-root .border-gray-200 {
|
|
17272
|
+
border-color: rgba(229, 231, 235, 0.3) !important;
|
|
17273
|
+
}
|
|
17274
|
+
|
|
17275
|
+
.voxket-widget-root .border-gray-300 {
|
|
17276
|
+
border-color: rgba(209, 213, 219, 0.3) !important;
|
|
17277
|
+
}
|
|
17278
|
+
|
|
17279
|
+
/* Welcome screen text visibility fixes */
|
|
17280
|
+
.voxket-widget-root [data-theme="dark"],
|
|
17281
|
+
.voxket-widget-root [data-theme="vox"],
|
|
17282
|
+
.voxket-widget-root.theme-dark,
|
|
17283
|
+
.voxket-widget-root.theme-vox {
|
|
17284
|
+
color: #ffffff !important;
|
|
17285
|
+
}
|
|
17286
|
+
|
|
17287
|
+
.voxket-widget-root [data-theme="dark"] *,
|
|
17288
|
+
.voxket-widget-root [data-theme="vox"] *,
|
|
17289
|
+
.voxket-widget-root.theme-dark *,
|
|
17290
|
+
.voxket-widget-root.theme-vox * {
|
|
17291
|
+
color: inherit !important;
|
|
17292
|
+
}
|
|
17293
|
+
|
|
17294
|
+
.voxket-widget-root [data-theme="dark"] .text-primary,
|
|
17295
|
+
.voxket-widget-root [data-theme="vox"] .text-primary,
|
|
17296
|
+
.voxket-widget-root.theme-dark .text-primary,
|
|
17297
|
+
.voxket-widget-root.theme-vox .text-primary,
|
|
17298
|
+
.voxket-widget-root [data-theme="dark"] .welcome-screen h1,
|
|
17299
|
+
.voxket-widget-root [data-theme="vox"] .welcome-screen h1,
|
|
17300
|
+
.voxket-widget-root [data-theme="dark"] .welcome-screen h2,
|
|
17301
|
+
.voxket-widget-root [data-theme="vox"] .welcome-screen h2,
|
|
17302
|
+
.voxket-widget-root [data-theme="dark"] .welcome-screen h3,
|
|
17303
|
+
.voxket-widget-root [data-theme="vox"] .welcome-screen h3,
|
|
17304
|
+
.voxket-widget-root [data-theme="dark"] .welcome-screen p,
|
|
17305
|
+
.voxket-widget-root [data-theme="vox"] .welcome-screen p,
|
|
17306
|
+
.voxket-widget-root [data-theme="dark"] .welcome-screen span,
|
|
17307
|
+
.voxket-widget-root [data-theme="vox"] .welcome-screen span,
|
|
17308
|
+
.voxket-widget-root.theme-dark .welcome-screen h1,
|
|
17309
|
+
.voxket-widget-root.theme-vox .welcome-screen h1,
|
|
17310
|
+
.voxket-widget-root.theme-dark .welcome-screen h2,
|
|
17311
|
+
.voxket-widget-root.theme-vox .welcome-screen h2,
|
|
17312
|
+
.voxket-widget-root.theme-dark .welcome-screen h3,
|
|
17313
|
+
.voxket-widget-root.theme-vox .welcome-screen h3,
|
|
17314
|
+
.voxket-widget-root.theme-dark .welcome-screen p,
|
|
17315
|
+
.voxket-widget-root.theme-vox .welcome-screen p,
|
|
17316
|
+
.voxket-widget-root.theme-dark .welcome-screen span,
|
|
17317
|
+
.voxket-widget-root.theme-vox .welcome-screen span {
|
|
17318
|
+
color: #ffffff !important;
|
|
17319
|
+
}
|
|
17320
|
+
|
|
17321
|
+
.voxket-widget-root [data-theme="light"],
|
|
17322
|
+
.voxket-widget-root.theme-light {
|
|
17323
|
+
color: #111827 !important;
|
|
17324
|
+
}
|
|
17325
|
+
|
|
17326
|
+
.voxket-widget-root [data-theme="light"] .text-primary,
|
|
17327
|
+
.voxket-widget-root [data-theme="light"] .welcome-screen h1,
|
|
17328
|
+
.voxket-widget-root [data-theme="light"] .welcome-screen h2,
|
|
17329
|
+
.voxket-widget-root [data-theme="light"] .welcome-screen h3,
|
|
17330
|
+
.voxket-widget-root [data-theme="light"] .welcome-screen p,
|
|
17331
|
+
.voxket-widget-root [data-theme="light"] .welcome-screen span,
|
|
17332
|
+
.voxket-widget-root.theme-light .text-primary,
|
|
17333
|
+
.voxket-widget-root.theme-light .welcome-screen h1,
|
|
17334
|
+
.voxket-widget-root.theme-light .welcome-screen h2,
|
|
17335
|
+
.voxket-widget-root.theme-light .welcome-screen h3,
|
|
17336
|
+
.voxket-widget-root.theme-light .welcome-screen p,
|
|
17337
|
+
.voxket-widget-root.theme-light .welcome-screen span {
|
|
17338
|
+
color: #111827 !important;
|
|
17339
|
+
}
|
|
17340
|
+
|
|
17341
|
+
/* Popup trigger button - ensure background is visible */
|
|
17342
|
+
.voxket-popup-trigger,
|
|
17343
|
+
.voxket-widget-root .voxket-popup-trigger {
|
|
17344
|
+
background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
|
|
17345
|
+
color: #ffffff !important;
|
|
17346
|
+
border: none !important;
|
|
17347
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
|
|
17348
|
+
display: inline-flex !important;
|
|
17349
|
+
align-items: center !important;
|
|
17350
|
+
justify-content: center !important;
|
|
17351
|
+
}
|
|
17352
|
+
|
|
17353
|
+
.voxket-popup-trigger:hover,
|
|
17354
|
+
.voxket-widget-root .voxket-popup-trigger:hover {
|
|
17355
|
+
background: linear-gradient(135deg, #2563eb, #7c3aed) !important;
|
|
17356
|
+
transform: scale(1.05) !important;
|
|
17357
|
+
}
|
|
17358
|
+
|
|
17264
17359
|
/* Background colors and containers - force visibility */
|
|
17265
17360
|
.voxket-widget-root .bg-white {
|
|
17266
17361
|
background-color: #ffffff !important;
|
|
@@ -18736,6 +18831,7 @@ function Ja({
|
|
|
18736
18831
|
{
|
|
18737
18832
|
id: "voice-card",
|
|
18738
18833
|
className: `theme-${t} ${s.card} w-full h-full flex flex-col rounded-xl shadow-2xl`,
|
|
18834
|
+
"data-theme": t,
|
|
18739
18835
|
style: { minHeight: "600px" },
|
|
18740
18836
|
children: [
|
|
18741
18837
|
/* @__PURE__ */ u("div", { className: s.cardTopGradient }),
|
|
@@ -18774,6 +18870,7 @@ function Ja({
|
|
|
18774
18870
|
{
|
|
18775
18871
|
id: "voice-card",
|
|
18776
18872
|
className: `theme-${t} ${s.card} rounded-2xl flex flex-col`,
|
|
18873
|
+
"data-theme": t,
|
|
18777
18874
|
style: { width: "300px", height: "450px" },
|
|
18778
18875
|
children: [
|
|
18779
18876
|
/* @__PURE__ */ u("div", { className: s.cardPurpleBlur }),
|
|
@@ -18791,6 +18888,7 @@ function Ja({
|
|
|
18791
18888
|
{
|
|
18792
18889
|
id: "voice-card",
|
|
18793
18890
|
className: `theme-${t} ${s.card}`,
|
|
18891
|
+
"data-theme": t,
|
|
18794
18892
|
style: { height: "100%", maxHeight: "100%" },
|
|
18795
18893
|
children: [
|
|
18796
18894
|
/* @__PURE__ */ u("div", { className: s.cardTopGradient }),
|