@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/index.js CHANGED
@@ -34646,7 +34646,7 @@ var PersonalitiesTab = ({
34646
34646
  import_material38.Card,
34647
34647
  {
34648
34648
  sx: {
34649
- mb: { xs: 2, md: 4 },
34649
+ mb: { xs: 2, md: 2.5 },
34650
34650
  background: "linear-gradient(135deg, #1976d2 0%, #42a5f5 100%)",
34651
34651
  border: "2px solid transparent",
34652
34652
  borderRadius: { xs: 2.25, sm: 3 },
@@ -34683,24 +34683,24 @@ var PersonalitiesTab = ({
34683
34683
  setPersonalityTabIndex(1);
34684
34684
  },
34685
34685
  children: /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(import_material38.CardContent, { sx: {
34686
- p: { xs: 1.75, sm: 4 },
34686
+ p: { xs: 1.75, sm: 2.5 },
34687
34687
  color: "white",
34688
- textAlign: { xs: "left", sm: "center" },
34688
+ textAlign: "left",
34689
34689
  position: "relative",
34690
34690
  zIndex: 1,
34691
34691
  display: "flex",
34692
- flexDirection: { xs: "row", sm: "column" },
34693
- alignItems: { xs: "center", sm: "center" },
34694
- gap: { xs: 1.25, sm: 0 }
34692
+ flexDirection: "row",
34693
+ alignItems: "center",
34694
+ gap: { xs: 1.25, sm: 2 }
34695
34695
  }, children: [
34696
34696
  /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(import_material38.Box, { sx: {
34697
34697
  display: "flex",
34698
34698
  alignItems: "center",
34699
34699
  justifyContent: "center",
34700
34700
  fontSize: 0,
34701
- mb: { xs: 0, sm: 2 },
34701
+ mb: 0,
34702
34702
  flexShrink: 0
34703
- }, children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(AutoAwesomeIcon, { sx: { fontSize: { xs: 28, sm: 44 }, color: "common.white", filter: "drop-shadow(0 4px 12px rgba(0,0,0,0.25))" } }) }),
34703
+ }, children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(AutoAwesomeIcon, { sx: { fontSize: { xs: 28, sm: 34 }, color: "common.white", filter: "drop-shadow(0 4px 12px rgba(0,0,0,0.25))" } }) }),
34704
34704
  /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(import_material38.Box, { sx: { flex: 1, minWidth: 0 }, children: [
34705
34705
  /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
34706
34706
  import_material38.Typography,
@@ -34708,9 +34708,9 @@ var PersonalitiesTab = ({
34708
34708
  variant: "h5",
34709
34709
  sx: {
34710
34710
  fontWeight: 700,
34711
- mb: { xs: 0.25, sm: 1 },
34711
+ mb: 0.25,
34712
34712
  textShadow: "0 2px 4px rgba(0,0,0,0.2)",
34713
- fontSize: { xs: "1.1rem", sm: "1.75rem" }
34713
+ fontSize: { xs: "1.1rem", sm: "1.25rem" }
34714
34714
  },
34715
34715
  children: "Create from Scratch"
34716
34716
  }
@@ -44101,6 +44101,14 @@ var Management = () => {
44101
44101
  const currentTheme = (0, import_react60.useMemo)(() => {
44102
44102
  const baseTheme = predefinedThemes[theme] || banditDarkTheme;
44103
44103
  return (0, import_styles32.createTheme)(baseTheme, {
44104
+ // Management-scoped density: condenses every settings tab at once. This
44105
+ // theme only wraps the admin console, so the chat UI is unaffected.
44106
+ typography: {
44107
+ h3: { fontSize: "1.7rem" },
44108
+ h4: { fontSize: "1.35rem" },
44109
+ h5: { fontSize: "1.15rem" },
44110
+ h6: { fontSize: "1rem" }
44111
+ },
44104
44112
  components: {
44105
44113
  MuiInputBase: {
44106
44114
  styleOverrides: {
@@ -44121,6 +44129,19 @@ var Management = () => {
44121
44129
  }
44122
44130
  }
44123
44131
  }
44132
+ },
44133
+ MuiCardContent: {
44134
+ styleOverrides: {
44135
+ root: {
44136
+ padding: 16,
44137
+ "&:last-child": { paddingBottom: 16 }
44138
+ }
44139
+ }
44140
+ },
44141
+ MuiCard: {
44142
+ styleOverrides: {
44143
+ root: { borderRadius: 12 }
44144
+ }
44124
44145
  }
44125
44146
  }
44126
44147
  });
@@ -44570,7 +44591,7 @@ var Management = () => {
44570
44591
  {
44571
44592
  sx: {
44572
44593
  flex: 1,
44573
- p: { xs: 1, sm: 3, md: 4 },
44594
+ p: { xs: 1.5, sm: 2.5, md: 3 },
44574
44595
  overflowY: "auto",
44575
44596
  overflowX: "hidden",
44576
44597
  maxWidth: "100vw",