@supernal/interface-nextjs 1.0.9 → 1.0.10
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 +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -944,7 +944,7 @@ var ChatBubble = ({
|
|
|
944
944
|
isExpanded && isMinimized && /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
945
945
|
"div",
|
|
946
946
|
{
|
|
947
|
-
className: `
|
|
947
|
+
className: `fixed ${dockClasses.container} ${glassClasses} rounded-3xl shadow-2xl border p-4 transition-all duration-300`,
|
|
948
948
|
style: { width: panelWidth, maxWidth: "400px" },
|
|
949
949
|
children: [
|
|
950
950
|
/* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { className: "flex items-center justify-between mb-3", children: [
|
|
@@ -986,7 +986,7 @@ var ChatBubble = ({
|
|
|
986
986
|
"div",
|
|
987
987
|
{
|
|
988
988
|
ref: panelRef,
|
|
989
|
-
className: `${isDocked ? "
|
|
989
|
+
className: `${isDocked ? "fixed " + dockClasses.container : "fixed"} ${glassGradient} rounded-3xl shadow-2xl border border-white/20 dark:border-white/10 backdrop-blur-xl flex flex-col overflow-hidden transition-all duration-300`,
|
|
990
990
|
style: {
|
|
991
991
|
width: panelWidth,
|
|
992
992
|
height: dynamicHeight,
|
package/dist/index.mjs
CHANGED
|
@@ -903,7 +903,7 @@ var ChatBubble = ({
|
|
|
903
903
|
isExpanded && isMinimized && /* @__PURE__ */ jsxs(
|
|
904
904
|
"div",
|
|
905
905
|
{
|
|
906
|
-
className: `
|
|
906
|
+
className: `fixed ${dockClasses.container} ${glassClasses} rounded-3xl shadow-2xl border p-4 transition-all duration-300`,
|
|
907
907
|
style: { width: panelWidth, maxWidth: "400px" },
|
|
908
908
|
children: [
|
|
909
909
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between mb-3", children: [
|
|
@@ -945,7 +945,7 @@ var ChatBubble = ({
|
|
|
945
945
|
"div",
|
|
946
946
|
{
|
|
947
947
|
ref: panelRef,
|
|
948
|
-
className: `${isDocked ? "
|
|
948
|
+
className: `${isDocked ? "fixed " + dockClasses.container : "fixed"} ${glassGradient} rounded-3xl shadow-2xl border border-white/20 dark:border-white/10 backdrop-blur-xl flex flex-col overflow-hidden transition-all duration-300`,
|
|
949
949
|
style: {
|
|
950
950
|
width: panelWidth,
|
|
951
951
|
height: dynamicHeight,
|
package/package.json
CHANGED