@burtson-labs/bandit-engine 2.0.76 → 2.0.77
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/{chunk-E5ROHXFN.mjs → chunk-V6HSZK5B.mjs} +33 -12
- package/dist/chunk-V6HSZK5B.mjs.map +1 -0
- package/dist/index.js +32 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/management/management.js +32 -11
- package/dist/management/management.js.map +1 -1
- package/dist/management/management.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-E5ROHXFN.mjs.map +0 -1
|
@@ -929,7 +929,7 @@ var PersonalitiesTab = ({
|
|
|
929
929
|
Card,
|
|
930
930
|
{
|
|
931
931
|
sx: {
|
|
932
|
-
mb: { xs: 2, md:
|
|
932
|
+
mb: { xs: 2, md: 2.5 },
|
|
933
933
|
background: "linear-gradient(135deg, #1976d2 0%, #42a5f5 100%)",
|
|
934
934
|
border: "2px solid transparent",
|
|
935
935
|
borderRadius: { xs: 2.25, sm: 3 },
|
|
@@ -966,24 +966,24 @@ var PersonalitiesTab = ({
|
|
|
966
966
|
setPersonalityTabIndex(1);
|
|
967
967
|
},
|
|
968
968
|
children: /* @__PURE__ */ jsxs2(CardContent, { sx: {
|
|
969
|
-
p: { xs: 1.75, sm:
|
|
969
|
+
p: { xs: 1.75, sm: 2.5 },
|
|
970
970
|
color: "white",
|
|
971
|
-
textAlign:
|
|
971
|
+
textAlign: "left",
|
|
972
972
|
position: "relative",
|
|
973
973
|
zIndex: 1,
|
|
974
974
|
display: "flex",
|
|
975
|
-
flexDirection:
|
|
976
|
-
alignItems:
|
|
977
|
-
gap: { xs: 1.25, sm:
|
|
975
|
+
flexDirection: "row",
|
|
976
|
+
alignItems: "center",
|
|
977
|
+
gap: { xs: 1.25, sm: 2 }
|
|
978
978
|
}, children: [
|
|
979
979
|
/* @__PURE__ */ jsx2(Box2, { sx: {
|
|
980
980
|
display: "flex",
|
|
981
981
|
alignItems: "center",
|
|
982
982
|
justifyContent: "center",
|
|
983
983
|
fontSize: 0,
|
|
984
|
-
mb:
|
|
984
|
+
mb: 0,
|
|
985
985
|
flexShrink: 0
|
|
986
|
-
}, children: /* @__PURE__ */ jsx2(AutoAwesomeIcon, { sx: { fontSize: { xs: 28, sm:
|
|
986
|
+
}, children: /* @__PURE__ */ jsx2(AutoAwesomeIcon, { sx: { fontSize: { xs: 28, sm: 34 }, color: "common.white", filter: "drop-shadow(0 4px 12px rgba(0,0,0,0.25))" } }) }),
|
|
987
987
|
/* @__PURE__ */ jsxs2(Box2, { sx: { flex: 1, minWidth: 0 }, children: [
|
|
988
988
|
/* @__PURE__ */ jsx2(
|
|
989
989
|
Typography2,
|
|
@@ -991,9 +991,9 @@ var PersonalitiesTab = ({
|
|
|
991
991
|
variant: "h5",
|
|
992
992
|
sx: {
|
|
993
993
|
fontWeight: 700,
|
|
994
|
-
mb:
|
|
994
|
+
mb: 0.25,
|
|
995
995
|
textShadow: "0 2px 4px rgba(0,0,0,0.2)",
|
|
996
|
-
fontSize: { xs: "1.1rem", sm: "1.
|
|
996
|
+
fontSize: { xs: "1.1rem", sm: "1.25rem" }
|
|
997
997
|
},
|
|
998
998
|
children: "Create from Scratch"
|
|
999
999
|
}
|
|
@@ -10479,6 +10479,14 @@ var Management = () => {
|
|
|
10479
10479
|
const currentTheme = useMemo6(() => {
|
|
10480
10480
|
const baseTheme = predefinedThemes[theme] || banditDarkTheme;
|
|
10481
10481
|
return createTheme(baseTheme, {
|
|
10482
|
+
// Management-scoped density: condenses every settings tab at once. This
|
|
10483
|
+
// theme only wraps the admin console, so the chat UI is unaffected.
|
|
10484
|
+
typography: {
|
|
10485
|
+
h3: { fontSize: "1.7rem" },
|
|
10486
|
+
h4: { fontSize: "1.35rem" },
|
|
10487
|
+
h5: { fontSize: "1.15rem" },
|
|
10488
|
+
h6: { fontSize: "1rem" }
|
|
10489
|
+
},
|
|
10482
10490
|
components: {
|
|
10483
10491
|
MuiInputBase: {
|
|
10484
10492
|
styleOverrides: {
|
|
@@ -10499,6 +10507,19 @@ var Management = () => {
|
|
|
10499
10507
|
}
|
|
10500
10508
|
}
|
|
10501
10509
|
}
|
|
10510
|
+
},
|
|
10511
|
+
MuiCardContent: {
|
|
10512
|
+
styleOverrides: {
|
|
10513
|
+
root: {
|
|
10514
|
+
padding: 16,
|
|
10515
|
+
"&:last-child": { paddingBottom: 16 }
|
|
10516
|
+
}
|
|
10517
|
+
}
|
|
10518
|
+
},
|
|
10519
|
+
MuiCard: {
|
|
10520
|
+
styleOverrides: {
|
|
10521
|
+
root: { borderRadius: 12 }
|
|
10522
|
+
}
|
|
10502
10523
|
}
|
|
10503
10524
|
}
|
|
10504
10525
|
});
|
|
@@ -10948,7 +10969,7 @@ var Management = () => {
|
|
|
10948
10969
|
{
|
|
10949
10970
|
sx: {
|
|
10950
10971
|
flex: 1,
|
|
10951
|
-
p: { xs: 1, sm:
|
|
10972
|
+
p: { xs: 1.5, sm: 2.5, md: 3 },
|
|
10952
10973
|
overflowY: "auto",
|
|
10953
10974
|
overflowX: "hidden",
|
|
10954
10975
|
maxWidth: "100vw",
|
|
@@ -11080,4 +11101,4 @@ export {
|
|
|
11080
11101
|
useGatewayMemory,
|
|
11081
11102
|
management_default
|
|
11082
11103
|
};
|
|
11083
|
-
//# sourceMappingURL=chunk-
|
|
11104
|
+
//# sourceMappingURL=chunk-V6HSZK5B.mjs.map
|