@agenticmail/enterprise 0.5.271 → 0.5.273
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/dashboard/app.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// ─── Imports ─────────────────────────────────────────────
|
|
2
2
|
import { h, useState, useEffect, useCallback, useRef, Fragment, AppContext, useApp, apiCall, authCall, engineCall, applyBrandColor, setOrgId } from './components/utils.js';
|
|
3
|
-
import { I } from './components/icons.js';
|
|
3
|
+
import { I } from './components/icons.js?v=2';
|
|
4
4
|
import { ErrorBoundary } from './components/error-boundary.js';
|
|
5
5
|
import { Modal } from './components/modal.js';
|
|
6
6
|
import { LoginPage, OnboardingWizard } from './pages/login.js';
|
|
@@ -429,7 +429,7 @@ tbody tr:hover { background: var(--bg-hover); }
|
|
|
429
429
|
</head>
|
|
430
430
|
<body>
|
|
431
431
|
<div id="root"></div>
|
|
432
|
-
<script type="module" src="/dashboard/app.js?v=
|
|
432
|
+
<script type="module" src="/dashboard/app.js?v=7"></script>
|
|
433
433
|
<script>
|
|
434
434
|
(function() {
|
|
435
435
|
var b = window.__EM_BRANDING__;
|
|
@@ -138,7 +138,7 @@ export function DatabaseAccessPage() {
|
|
|
138
138
|
return h('div', { style: s.page },
|
|
139
139
|
h('div', { style: s.header },
|
|
140
140
|
h('div', { style: s.title },
|
|
141
|
-
I.database(
|
|
141
|
+
I.database(),
|
|
142
142
|
'Database Access',
|
|
143
143
|
HelpButton({
|
|
144
144
|
title: 'Database Access',
|
|
@@ -176,7 +176,7 @@ function ConnectionsTab(props) {
|
|
|
176
176
|
var connections = props.connections;
|
|
177
177
|
if (connections.length === 0) {
|
|
178
178
|
return h('div', { style: s.emptyState },
|
|
179
|
-
h('div', { style: s.emptyIcon }, I.database(
|
|
179
|
+
h('div', { style: s.emptyIcon }, I.database()),
|
|
180
180
|
h('div', { style: 'font-size: 16px; font-weight: 600; margin-bottom: 8px;' }, 'No Database Connections'),
|
|
181
181
|
h('div', null, 'Add a connection to let your agents query external databases.'),
|
|
182
182
|
);
|
package/package.json
CHANGED
package/src/dashboard/app.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// ─── Imports ─────────────────────────────────────────────
|
|
2
2
|
import { h, useState, useEffect, useCallback, useRef, Fragment, AppContext, useApp, apiCall, authCall, engineCall, applyBrandColor, setOrgId } from './components/utils.js';
|
|
3
|
-
import { I } from './components/icons.js';
|
|
3
|
+
import { I } from './components/icons.js?v=2';
|
|
4
4
|
import { ErrorBoundary } from './components/error-boundary.js';
|
|
5
5
|
import { Modal } from './components/modal.js';
|
|
6
6
|
import { LoginPage, OnboardingWizard } from './pages/login.js';
|
package/src/dashboard/index.html
CHANGED
|
@@ -429,7 +429,7 @@ tbody tr:hover { background: var(--bg-hover); }
|
|
|
429
429
|
</head>
|
|
430
430
|
<body>
|
|
431
431
|
<div id="root"></div>
|
|
432
|
-
<script type="module" src="/dashboard/app.js?v=
|
|
432
|
+
<script type="module" src="/dashboard/app.js?v=7"></script>
|
|
433
433
|
<script>
|
|
434
434
|
(function() {
|
|
435
435
|
var b = window.__EM_BRANDING__;
|
|
@@ -138,7 +138,7 @@ export function DatabaseAccessPage() {
|
|
|
138
138
|
return h('div', { style: s.page },
|
|
139
139
|
h('div', { style: s.header },
|
|
140
140
|
h('div', { style: s.title },
|
|
141
|
-
I.database(
|
|
141
|
+
I.database(),
|
|
142
142
|
'Database Access',
|
|
143
143
|
HelpButton({
|
|
144
144
|
title: 'Database Access',
|
|
@@ -176,7 +176,7 @@ function ConnectionsTab(props) {
|
|
|
176
176
|
var connections = props.connections;
|
|
177
177
|
if (connections.length === 0) {
|
|
178
178
|
return h('div', { style: s.emptyState },
|
|
179
|
-
h('div', { style: s.emptyIcon }, I.database(
|
|
179
|
+
h('div', { style: s.emptyIcon }, I.database()),
|
|
180
180
|
h('div', { style: 'font-size: 16px; font-weight: 600; margin-bottom: 8px;' }, 'No Database Connections'),
|
|
181
181
|
h('div', null, 'Add a connection to let your agents query external databases.'),
|
|
182
182
|
);
|