@agenticmail/enterprise 0.5.278 → 0.5.280

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.
@@ -5,8 +5,8 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1"/>
6
6
  <title>AgenticMail Enterprise</title>
7
7
  <link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><defs><linearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='100%25'><stop offset='0%25' stop-color='%23f43f5e'/><stop offset='100%25' stop-color='%23e11d48'/></linearGradient></defs><rect x='2' y='5' width='20' height='14' rx='2.5' fill='url(%23g)'/><polyline points='2 5 12 13 22 5' stroke='white' stroke-width='1.8' fill='none' stroke-linejoin='round' opacity='0.85'/></svg>"/>
8
- <script src="/dashboard/vendor/react.development.js"></script>
9
- <script src="/dashboard/vendor/react-dom.development.js"></script>
8
+ <script src="/dashboard/vendor/react.production.min.js"></script>
9
+ <script src="/dashboard/vendor/react-dom.production.min.js"></script>
10
10
  <style>
11
11
  /* ═══════════════════════════════════════════════════════════
12
12
  THEME SYSTEM — CSS Custom Properties
@@ -260,7 +260,7 @@ function AgentAccessTab(props) {
260
260
 
261
261
  if (agentsWithAccess.length === 0) {
262
262
  return h('div', { style: s.emptyState },
263
- h('div', { style: s.emptyIcon }, '🔒'),
263
+ h('div', { style: s.emptyIcon }, I.lock()),
264
264
  h('div', { style: css('font-size: 16px; font-weight: 600; margin-bottom: 8px;') }, 'No Agents Have Database Access'),
265
265
  h('div', null, 'Grant access from the Connections tab to allow agents to query databases.'),
266
266
  );
@@ -308,7 +308,7 @@ function AgentAccessTab(props) {
308
308
  function AuditTab(props) {
309
309
  if (props.auditLog.length === 0) {
310
310
  return h('div', { style: s.emptyState },
311
- h('div', { style: s.emptyIcon }, '📋'),
311
+ h('div', { style: s.emptyIcon }, I.audit()),
312
312
  h('div', { style: css('font-size: 16px; font-weight: 600; margin-bottom: 8px;') }, 'No Query Activity Yet'),
313
313
  h('div', null, 'Queries executed by agents will appear here with full audit details.'),
314
314
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenticmail/enterprise",
3
- "version": "0.5.278",
3
+ "version": "0.5.280",
4
4
  "description": "AgenticMail Enterprise — cloud-hosted AI agent identity, email, auth & compliance for organizations",
5
5
  "type": "module",
6
6
  "bin": {
@@ -5,8 +5,8 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1"/>
6
6
  <title>AgenticMail Enterprise</title>
7
7
  <link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><defs><linearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='100%25'><stop offset='0%25' stop-color='%23f43f5e'/><stop offset='100%25' stop-color='%23e11d48'/></linearGradient></defs><rect x='2' y='5' width='20' height='14' rx='2.5' fill='url(%23g)'/><polyline points='2 5 12 13 22 5' stroke='white' stroke-width='1.8' fill='none' stroke-linejoin='round' opacity='0.85'/></svg>"/>
8
- <script src="/dashboard/vendor/react.development.js"></script>
9
- <script src="/dashboard/vendor/react-dom.development.js"></script>
8
+ <script src="/dashboard/vendor/react.production.min.js"></script>
9
+ <script src="/dashboard/vendor/react-dom.production.min.js"></script>
10
10
  <style>
11
11
  /* ═══════════════════════════════════════════════════════════
12
12
  THEME SYSTEM — CSS Custom Properties
@@ -260,7 +260,7 @@ function AgentAccessTab(props) {
260
260
 
261
261
  if (agentsWithAccess.length === 0) {
262
262
  return h('div', { style: s.emptyState },
263
- h('div', { style: s.emptyIcon }, '🔒'),
263
+ h('div', { style: s.emptyIcon }, I.lock()),
264
264
  h('div', { style: css('font-size: 16px; font-weight: 600; margin-bottom: 8px;') }, 'No Agents Have Database Access'),
265
265
  h('div', null, 'Grant access from the Connections tab to allow agents to query databases.'),
266
266
  );
@@ -308,7 +308,7 @@ function AgentAccessTab(props) {
308
308
  function AuditTab(props) {
309
309
  if (props.auditLog.length === 0) {
310
310
  return h('div', { style: s.emptyState },
311
- h('div', { style: s.emptyIcon }, '📋'),
311
+ h('div', { style: s.emptyIcon }, I.audit()),
312
312
  h('div', { style: css('font-size: 16px; font-weight: 600; margin-bottom: 8px;') }, 'No Query Activity Yet'),
313
313
  h('div', null, 'Queries executed by agents will appear here with full audit details.'),
314
314
  );