@trops/dash-core 0.1.175 → 0.1.177
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/electron/index.js +417 -93
- package/dist/electron/index.js.map +1 -1
- package/dist/index.esm.js +505 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +505 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -28067,6 +28067,233 @@ var useWebSocketProvider = function useWebSocketProvider(providerType) {
|
|
|
28067
28067
|
};
|
|
28068
28068
|
};
|
|
28069
28069
|
|
|
28070
|
+
/**
|
|
28071
|
+
* useMcpDashServer
|
|
28072
|
+
*
|
|
28073
|
+
* React hook for controlling and monitoring the hosted MCP Dash server.
|
|
28074
|
+
* Accesses window.mainApi.mcpDashServer for IPC calls to the main process.
|
|
28075
|
+
*
|
|
28076
|
+
* Returns server status, control functions (start/stop/restart), token, and port.
|
|
28077
|
+
* Polls status every 3 seconds while mounted.
|
|
28078
|
+
*/
|
|
28079
|
+
function useMcpDashServer() {
|
|
28080
|
+
var _window$mainApi;
|
|
28081
|
+
var _useState = useState({
|
|
28082
|
+
running: false,
|
|
28083
|
+
enabled: false,
|
|
28084
|
+
port: 3141,
|
|
28085
|
+
connectionCount: 0,
|
|
28086
|
+
uptime: 0,
|
|
28087
|
+
toolCount: 0,
|
|
28088
|
+
resourceCount: 0
|
|
28089
|
+
}),
|
|
28090
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
28091
|
+
status = _useState2[0],
|
|
28092
|
+
setStatus = _useState2[1];
|
|
28093
|
+
var _useState3 = useState(null),
|
|
28094
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
|
28095
|
+
token = _useState4[0],
|
|
28096
|
+
setToken = _useState4[1];
|
|
28097
|
+
var _useState5 = useState(true),
|
|
28098
|
+
_useState6 = _slicedToArray(_useState5, 2),
|
|
28099
|
+
loading = _useState6[0],
|
|
28100
|
+
setLoading = _useState6[1];
|
|
28101
|
+
var _useState7 = useState(null),
|
|
28102
|
+
_useState8 = _slicedToArray(_useState7, 2),
|
|
28103
|
+
error = _useState8[0],
|
|
28104
|
+
setError = _useState8[1];
|
|
28105
|
+
var pollRef = useRef(null);
|
|
28106
|
+
var api = (_window$mainApi = window.mainApi) === null || _window$mainApi === void 0 ? void 0 : _window$mainApi.mcpDashServer;
|
|
28107
|
+
var fetchStatus = useCallback(/*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
|
|
28108
|
+
var result, _t;
|
|
28109
|
+
return _regeneratorRuntime.wrap(function (_context) {
|
|
28110
|
+
while (1) switch (_context.prev = _context.next) {
|
|
28111
|
+
case 0:
|
|
28112
|
+
if (api) {
|
|
28113
|
+
_context.next = 1;
|
|
28114
|
+
break;
|
|
28115
|
+
}
|
|
28116
|
+
return _context.abrupt("return");
|
|
28117
|
+
case 1:
|
|
28118
|
+
_context.prev = 1;
|
|
28119
|
+
_context.next = 2;
|
|
28120
|
+
return api.getStatus();
|
|
28121
|
+
case 2:
|
|
28122
|
+
result = _context.sent;
|
|
28123
|
+
setStatus(result);
|
|
28124
|
+
setError(null);
|
|
28125
|
+
_context.next = 4;
|
|
28126
|
+
break;
|
|
28127
|
+
case 3:
|
|
28128
|
+
_context.prev = 3;
|
|
28129
|
+
_t = _context["catch"](1);
|
|
28130
|
+
setError(_t.message || "Failed to get server status");
|
|
28131
|
+
case 4:
|
|
28132
|
+
case "end":
|
|
28133
|
+
return _context.stop();
|
|
28134
|
+
}
|
|
28135
|
+
}, _callee, null, [[1, 3]]);
|
|
28136
|
+
})), [api]);
|
|
28137
|
+
var fetchToken = useCallback(/*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee2() {
|
|
28138
|
+
var t;
|
|
28139
|
+
return _regeneratorRuntime.wrap(function (_context2) {
|
|
28140
|
+
while (1) switch (_context2.prev = _context2.next) {
|
|
28141
|
+
case 0:
|
|
28142
|
+
if (api) {
|
|
28143
|
+
_context2.next = 1;
|
|
28144
|
+
break;
|
|
28145
|
+
}
|
|
28146
|
+
return _context2.abrupt("return");
|
|
28147
|
+
case 1:
|
|
28148
|
+
_context2.prev = 1;
|
|
28149
|
+
_context2.next = 2;
|
|
28150
|
+
return api.getToken();
|
|
28151
|
+
case 2:
|
|
28152
|
+
t = _context2.sent;
|
|
28153
|
+
setToken(t);
|
|
28154
|
+
_context2.next = 4;
|
|
28155
|
+
break;
|
|
28156
|
+
case 3:
|
|
28157
|
+
_context2.prev = 3;
|
|
28158
|
+
_context2["catch"](1);
|
|
28159
|
+
case 4:
|
|
28160
|
+
case "end":
|
|
28161
|
+
return _context2.stop();
|
|
28162
|
+
}
|
|
28163
|
+
}, _callee2, null, [[1, 3]]);
|
|
28164
|
+
})), [api]);
|
|
28165
|
+
|
|
28166
|
+
// Initial load
|
|
28167
|
+
useEffect(function () {
|
|
28168
|
+
if (!api) {
|
|
28169
|
+
setLoading(false);
|
|
28170
|
+
return;
|
|
28171
|
+
}
|
|
28172
|
+
Promise.all([fetchStatus(), fetchToken()]).then(function () {
|
|
28173
|
+
return setLoading(false);
|
|
28174
|
+
});
|
|
28175
|
+
}, [api, fetchStatus, fetchToken]);
|
|
28176
|
+
|
|
28177
|
+
// Poll status every 3 seconds
|
|
28178
|
+
useEffect(function () {
|
|
28179
|
+
if (!api) return;
|
|
28180
|
+
pollRef.current = setInterval(fetchStatus, 3000);
|
|
28181
|
+
return function () {
|
|
28182
|
+
return clearInterval(pollRef.current);
|
|
28183
|
+
};
|
|
28184
|
+
}, [api, fetchStatus]);
|
|
28185
|
+
var startServer = useCallback(/*#__PURE__*/function () {
|
|
28186
|
+
var _ref3 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee3(port) {
|
|
28187
|
+
var result, _t3;
|
|
28188
|
+
return _regeneratorRuntime.wrap(function (_context3) {
|
|
28189
|
+
while (1) switch (_context3.prev = _context3.next) {
|
|
28190
|
+
case 0:
|
|
28191
|
+
if (api) {
|
|
28192
|
+
_context3.next = 1;
|
|
28193
|
+
break;
|
|
28194
|
+
}
|
|
28195
|
+
return _context3.abrupt("return");
|
|
28196
|
+
case 1:
|
|
28197
|
+
setError(null);
|
|
28198
|
+
_context3.prev = 2;
|
|
28199
|
+
_context3.next = 3;
|
|
28200
|
+
return api.startServer(port);
|
|
28201
|
+
case 3:
|
|
28202
|
+
result = _context3.sent;
|
|
28203
|
+
if (!result.success) {
|
|
28204
|
+
setError(result.error || "Failed to start server");
|
|
28205
|
+
}
|
|
28206
|
+
_context3.next = 4;
|
|
28207
|
+
return fetchStatus();
|
|
28208
|
+
case 4:
|
|
28209
|
+
return _context3.abrupt("return", result);
|
|
28210
|
+
case 5:
|
|
28211
|
+
_context3.prev = 5;
|
|
28212
|
+
_t3 = _context3["catch"](2);
|
|
28213
|
+
setError(_t3.message || "Failed to start server");
|
|
28214
|
+
case 6:
|
|
28215
|
+
case "end":
|
|
28216
|
+
return _context3.stop();
|
|
28217
|
+
}
|
|
28218
|
+
}, _callee3, null, [[2, 5]]);
|
|
28219
|
+
}));
|
|
28220
|
+
return function (_x) {
|
|
28221
|
+
return _ref3.apply(this, arguments);
|
|
28222
|
+
};
|
|
28223
|
+
}(), [api, fetchStatus]);
|
|
28224
|
+
var stopServer = useCallback(/*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee4() {
|
|
28225
|
+
var result, _t4;
|
|
28226
|
+
return _regeneratorRuntime.wrap(function (_context4) {
|
|
28227
|
+
while (1) switch (_context4.prev = _context4.next) {
|
|
28228
|
+
case 0:
|
|
28229
|
+
if (api) {
|
|
28230
|
+
_context4.next = 1;
|
|
28231
|
+
break;
|
|
28232
|
+
}
|
|
28233
|
+
return _context4.abrupt("return");
|
|
28234
|
+
case 1:
|
|
28235
|
+
setError(null);
|
|
28236
|
+
_context4.prev = 2;
|
|
28237
|
+
_context4.next = 3;
|
|
28238
|
+
return api.stopServer();
|
|
28239
|
+
case 3:
|
|
28240
|
+
result = _context4.sent;
|
|
28241
|
+
if (!result.success) {
|
|
28242
|
+
setError(result.error || "Failed to stop server");
|
|
28243
|
+
}
|
|
28244
|
+
_context4.next = 4;
|
|
28245
|
+
return fetchStatus();
|
|
28246
|
+
case 4:
|
|
28247
|
+
return _context4.abrupt("return", result);
|
|
28248
|
+
case 5:
|
|
28249
|
+
_context4.prev = 5;
|
|
28250
|
+
_t4 = _context4["catch"](2);
|
|
28251
|
+
setError(_t4.message || "Failed to stop server");
|
|
28252
|
+
case 6:
|
|
28253
|
+
case "end":
|
|
28254
|
+
return _context4.stop();
|
|
28255
|
+
}
|
|
28256
|
+
}, _callee4, null, [[2, 5]]);
|
|
28257
|
+
})), [api, fetchStatus]);
|
|
28258
|
+
var restartServer = useCallback(/*#__PURE__*/function () {
|
|
28259
|
+
var _ref5 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee5(port) {
|
|
28260
|
+
return _regeneratorRuntime.wrap(function (_context5) {
|
|
28261
|
+
while (1) switch (_context5.prev = _context5.next) {
|
|
28262
|
+
case 0:
|
|
28263
|
+
_context5.next = 1;
|
|
28264
|
+
return stopServer();
|
|
28265
|
+
case 1:
|
|
28266
|
+
return _context5.abrupt("return", startServer(port));
|
|
28267
|
+
case 2:
|
|
28268
|
+
case "end":
|
|
28269
|
+
return _context5.stop();
|
|
28270
|
+
}
|
|
28271
|
+
}, _callee5);
|
|
28272
|
+
}));
|
|
28273
|
+
return function (_x2) {
|
|
28274
|
+
return _ref5.apply(this, arguments);
|
|
28275
|
+
};
|
|
28276
|
+
}(), [stopServer, startServer]);
|
|
28277
|
+
return {
|
|
28278
|
+
// Status
|
|
28279
|
+
running: status.running,
|
|
28280
|
+
enabled: status.enabled,
|
|
28281
|
+
port: status.port,
|
|
28282
|
+
connectionCount: status.connectionCount,
|
|
28283
|
+
uptime: status.uptime,
|
|
28284
|
+
toolCount: status.toolCount,
|
|
28285
|
+
resourceCount: status.resourceCount,
|
|
28286
|
+
token: token,
|
|
28287
|
+
loading: loading,
|
|
28288
|
+
error: error,
|
|
28289
|
+
// Actions
|
|
28290
|
+
startServer: startServer,
|
|
28291
|
+
stopServer: stopServer,
|
|
28292
|
+
restartServer: restartServer,
|
|
28293
|
+
refreshStatus: fetchStatus
|
|
28294
|
+
};
|
|
28295
|
+
}
|
|
28296
|
+
|
|
28070
28297
|
function ownKeys$i(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
28071
28298
|
function _objectSpread$i(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$i(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$i(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
28072
28299
|
var PreviewComponentsPane = function PreviewComponentsPane(_ref) {
|
|
@@ -43246,6 +43473,276 @@ function flattenLayout(layout) {
|
|
|
43246
43473
|
return items;
|
|
43247
43474
|
}
|
|
43248
43475
|
|
|
43476
|
+
var McpServerSection = function McpServerSection() {
|
|
43477
|
+
var _useMcpDashServer = useMcpDashServer(),
|
|
43478
|
+
running = _useMcpDashServer.running,
|
|
43479
|
+
port = _useMcpDashServer.port,
|
|
43480
|
+
connectionCount = _useMcpDashServer.connectionCount,
|
|
43481
|
+
uptime = _useMcpDashServer.uptime,
|
|
43482
|
+
toolCount = _useMcpDashServer.toolCount,
|
|
43483
|
+
resourceCount = _useMcpDashServer.resourceCount,
|
|
43484
|
+
token = _useMcpDashServer.token,
|
|
43485
|
+
loading = _useMcpDashServer.loading,
|
|
43486
|
+
error = _useMcpDashServer.error,
|
|
43487
|
+
startServer = _useMcpDashServer.startServer,
|
|
43488
|
+
stopServer = _useMcpDashServer.stopServer,
|
|
43489
|
+
restartServer = _useMcpDashServer.restartServer;
|
|
43490
|
+
var _useState = useState(null),
|
|
43491
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
43492
|
+
portInput = _useState2[0],
|
|
43493
|
+
setPortInput = _useState2[1];
|
|
43494
|
+
var _useState3 = useState(false),
|
|
43495
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
|
43496
|
+
tokenCopied = _useState4[0],
|
|
43497
|
+
setTokenCopied = _useState4[1];
|
|
43498
|
+
|
|
43499
|
+
// Use live port from server, but allow local override while editing
|
|
43500
|
+
var displayPort = portInput !== null ? portInput : port || 3141;
|
|
43501
|
+
var handleToggle = useCallback(/*#__PURE__*/function () {
|
|
43502
|
+
var _ref = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee(enabled) {
|
|
43503
|
+
return _regeneratorRuntime.wrap(function (_context) {
|
|
43504
|
+
while (1) switch (_context.prev = _context.next) {
|
|
43505
|
+
case 0:
|
|
43506
|
+
if (!enabled) {
|
|
43507
|
+
_context.next = 2;
|
|
43508
|
+
break;
|
|
43509
|
+
}
|
|
43510
|
+
_context.next = 1;
|
|
43511
|
+
return startServer(displayPort);
|
|
43512
|
+
case 1:
|
|
43513
|
+
_context.next = 3;
|
|
43514
|
+
break;
|
|
43515
|
+
case 2:
|
|
43516
|
+
_context.next = 3;
|
|
43517
|
+
return stopServer();
|
|
43518
|
+
case 3:
|
|
43519
|
+
case "end":
|
|
43520
|
+
return _context.stop();
|
|
43521
|
+
}
|
|
43522
|
+
}, _callee);
|
|
43523
|
+
}));
|
|
43524
|
+
return function (_x) {
|
|
43525
|
+
return _ref.apply(this, arguments);
|
|
43526
|
+
};
|
|
43527
|
+
}(), [startServer, stopServer, displayPort]);
|
|
43528
|
+
var handlePortChange = useCallback(function (e) {
|
|
43529
|
+
var val = e.target.value.replace(/\D/g, "");
|
|
43530
|
+
setPortInput(val ? parseInt(val, 10) : "");
|
|
43531
|
+
}, []);
|
|
43532
|
+
var handlePortBlur = useCallback(/*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee2() {
|
|
43533
|
+
return _regeneratorRuntime.wrap(function (_context2) {
|
|
43534
|
+
while (1) switch (_context2.prev = _context2.next) {
|
|
43535
|
+
case 0:
|
|
43536
|
+
if (!(portInput !== null && portInput !== "" && portInput !== port && running)) {
|
|
43537
|
+
_context2.next = 1;
|
|
43538
|
+
break;
|
|
43539
|
+
}
|
|
43540
|
+
_context2.next = 1;
|
|
43541
|
+
return restartServer(portInput);
|
|
43542
|
+
case 1:
|
|
43543
|
+
setPortInput(null);
|
|
43544
|
+
case 2:
|
|
43545
|
+
case "end":
|
|
43546
|
+
return _context2.stop();
|
|
43547
|
+
}
|
|
43548
|
+
}, _callee2);
|
|
43549
|
+
})), [portInput, port, running, restartServer]);
|
|
43550
|
+
var handlePortKeyDown = useCallback(function (e) {
|
|
43551
|
+
if (e.key === "Enter") {
|
|
43552
|
+
e.target.blur();
|
|
43553
|
+
}
|
|
43554
|
+
}, []);
|
|
43555
|
+
var handleCopyToken = useCallback(/*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee3() {
|
|
43556
|
+
return _regeneratorRuntime.wrap(function (_context3) {
|
|
43557
|
+
while (1) switch (_context3.prev = _context3.next) {
|
|
43558
|
+
case 0:
|
|
43559
|
+
if (token) {
|
|
43560
|
+
_context3.next = 1;
|
|
43561
|
+
break;
|
|
43562
|
+
}
|
|
43563
|
+
return _context3.abrupt("return");
|
|
43564
|
+
case 1:
|
|
43565
|
+
_context3.prev = 1;
|
|
43566
|
+
_context3.next = 2;
|
|
43567
|
+
return navigator.clipboard.writeText(token);
|
|
43568
|
+
case 2:
|
|
43569
|
+
setTokenCopied(true);
|
|
43570
|
+
setTimeout(function () {
|
|
43571
|
+
return setTokenCopied(false);
|
|
43572
|
+
}, 2000);
|
|
43573
|
+
_context3.next = 4;
|
|
43574
|
+
break;
|
|
43575
|
+
case 3:
|
|
43576
|
+
_context3.prev = 3;
|
|
43577
|
+
_context3["catch"](1);
|
|
43578
|
+
case 4:
|
|
43579
|
+
case "end":
|
|
43580
|
+
return _context3.stop();
|
|
43581
|
+
}
|
|
43582
|
+
}, _callee3, null, [[1, 3]]);
|
|
43583
|
+
})), [token]);
|
|
43584
|
+
var formatUptime = function formatUptime(seconds) {
|
|
43585
|
+
if (!seconds || seconds < 1) return "—";
|
|
43586
|
+
var h = Math.floor(seconds / 3600);
|
|
43587
|
+
var m = Math.floor(seconds % 3600 / 60);
|
|
43588
|
+
var s = Math.floor(seconds % 60);
|
|
43589
|
+
if (h > 0) return "".concat(h, "h ").concat(m, "m");
|
|
43590
|
+
if (m > 0) return "".concat(m, "m ").concat(s, "s");
|
|
43591
|
+
return "".concat(s, "s");
|
|
43592
|
+
};
|
|
43593
|
+
var statusColor = running ? "bg-green-500" : error ? "bg-red-500" : "bg-gray-500";
|
|
43594
|
+
var statusLabel = running ? "Running" : error ? "Error" : "Stopped";
|
|
43595
|
+
if (loading) {
|
|
43596
|
+
return /*#__PURE__*/jsx("div", {
|
|
43597
|
+
className: "flex items-center justify-center py-12 opacity-50",
|
|
43598
|
+
children: /*#__PURE__*/jsx("span", {
|
|
43599
|
+
className: "text-sm",
|
|
43600
|
+
children: "Loading MCP Server settings\u2026"
|
|
43601
|
+
})
|
|
43602
|
+
});
|
|
43603
|
+
}
|
|
43604
|
+
return /*#__PURE__*/jsxs("div", {
|
|
43605
|
+
className: "flex flex-col space-y-6",
|
|
43606
|
+
children: [/*#__PURE__*/jsxs("div", {
|
|
43607
|
+
className: "flex flex-col space-y-3",
|
|
43608
|
+
children: [/*#__PURE__*/jsx(SubHeading3, {
|
|
43609
|
+
title: "MCP Server",
|
|
43610
|
+
padding: false
|
|
43611
|
+
}), /*#__PURE__*/jsxs("div", {
|
|
43612
|
+
className: "flex flex-row items-center justify-between py-3",
|
|
43613
|
+
children: [/*#__PURE__*/jsxs("div", {
|
|
43614
|
+
className: "flex flex-col",
|
|
43615
|
+
children: [/*#__PURE__*/jsx("span", {
|
|
43616
|
+
className: "text-sm font-medium",
|
|
43617
|
+
children: "Enable MCP Server"
|
|
43618
|
+
}), /*#__PURE__*/jsx("span", {
|
|
43619
|
+
className: "text-xs opacity-50",
|
|
43620
|
+
children: "Expose dashboards, widgets, and themes to external LLM clients via MCP protocol"
|
|
43621
|
+
})]
|
|
43622
|
+
}), /*#__PURE__*/jsx(Switch, {
|
|
43623
|
+
checked: running,
|
|
43624
|
+
onChange: handleToggle
|
|
43625
|
+
})]
|
|
43626
|
+
})]
|
|
43627
|
+
}), /*#__PURE__*/jsxs("div", {
|
|
43628
|
+
className: "flex flex-col space-y-3",
|
|
43629
|
+
children: [/*#__PURE__*/jsx(SubHeading3, {
|
|
43630
|
+
title: "Status",
|
|
43631
|
+
padding: false
|
|
43632
|
+
}), /*#__PURE__*/jsxs("div", {
|
|
43633
|
+
className: "flex flex-row items-center space-x-3 py-2",
|
|
43634
|
+
children: [/*#__PURE__*/jsx("span", {
|
|
43635
|
+
className: "inline-block h-2.5 w-2.5 rounded-full ".concat(statusColor)
|
|
43636
|
+
}), /*#__PURE__*/jsx("span", {
|
|
43637
|
+
className: "text-sm font-medium",
|
|
43638
|
+
children: statusLabel
|
|
43639
|
+
}), running && /*#__PURE__*/jsxs("span", {
|
|
43640
|
+
className: "text-xs opacity-50",
|
|
43641
|
+
children: ["on port ", port]
|
|
43642
|
+
})]
|
|
43643
|
+
}), error && /*#__PURE__*/jsx("div", {
|
|
43644
|
+
className: "text-xs text-red-400 bg-red-500/10 rounded px-3 py-2",
|
|
43645
|
+
children: error
|
|
43646
|
+
})]
|
|
43647
|
+
}), /*#__PURE__*/jsxs("div", {
|
|
43648
|
+
className: "flex flex-col space-y-3",
|
|
43649
|
+
children: [/*#__PURE__*/jsx(SubHeading3, {
|
|
43650
|
+
title: "Configuration",
|
|
43651
|
+
padding: false
|
|
43652
|
+
}), /*#__PURE__*/jsxs("div", {
|
|
43653
|
+
className: "flex flex-row items-center justify-between py-3",
|
|
43654
|
+
children: [/*#__PURE__*/jsxs("div", {
|
|
43655
|
+
className: "flex flex-col",
|
|
43656
|
+
children: [/*#__PURE__*/jsx("span", {
|
|
43657
|
+
className: "text-sm font-medium",
|
|
43658
|
+
children: "Port"
|
|
43659
|
+
}), /*#__PURE__*/jsx("span", {
|
|
43660
|
+
className: "text-xs opacity-50",
|
|
43661
|
+
children: running ? "Changes take effect on restart" : "Port the server listens on"
|
|
43662
|
+
})]
|
|
43663
|
+
}), /*#__PURE__*/jsx("input", {
|
|
43664
|
+
type: "text",
|
|
43665
|
+
inputMode: "numeric",
|
|
43666
|
+
value: displayPort,
|
|
43667
|
+
onChange: handlePortChange,
|
|
43668
|
+
onBlur: handlePortBlur,
|
|
43669
|
+
onKeyDown: handlePortKeyDown,
|
|
43670
|
+
className: "w-24 text-right text-sm bg-white/5 border border-white/10 rounded px-3 py-1.5 focus:outline-none focus:ring-1 focus:ring-white/30"
|
|
43671
|
+
})]
|
|
43672
|
+
})]
|
|
43673
|
+
}), /*#__PURE__*/jsxs("div", {
|
|
43674
|
+
className: "flex flex-col space-y-3",
|
|
43675
|
+
children: [/*#__PURE__*/jsx(SubHeading3, {
|
|
43676
|
+
title: "Authentication",
|
|
43677
|
+
padding: false
|
|
43678
|
+
}), /*#__PURE__*/jsxs("div", {
|
|
43679
|
+
className: "flex flex-col space-y-2 py-3",
|
|
43680
|
+
children: [/*#__PURE__*/jsxs("div", {
|
|
43681
|
+
className: "flex flex-row items-center justify-between",
|
|
43682
|
+
children: [/*#__PURE__*/jsxs("div", {
|
|
43683
|
+
className: "flex flex-col",
|
|
43684
|
+
children: [/*#__PURE__*/jsx("span", {
|
|
43685
|
+
className: "text-sm font-medium",
|
|
43686
|
+
children: "Bearer Token"
|
|
43687
|
+
}), /*#__PURE__*/jsx("span", {
|
|
43688
|
+
className: "text-xs opacity-50",
|
|
43689
|
+
children: "Required for client authentication"
|
|
43690
|
+
})]
|
|
43691
|
+
}), /*#__PURE__*/jsx(Button, {
|
|
43692
|
+
title: tokenCopied ? "Copied!" : "Copy",
|
|
43693
|
+
onClick: handleCopyToken
|
|
43694
|
+
})]
|
|
43695
|
+
}), token && /*#__PURE__*/jsx("div", {
|
|
43696
|
+
className: "font-mono text-xs bg-black/20 rounded px-3 py-2 break-all select-all opacity-70",
|
|
43697
|
+
children: token
|
|
43698
|
+
})]
|
|
43699
|
+
})]
|
|
43700
|
+
}), running && /*#__PURE__*/jsxs("div", {
|
|
43701
|
+
className: "flex flex-col space-y-3",
|
|
43702
|
+
children: [/*#__PURE__*/jsx(SubHeading3, {
|
|
43703
|
+
title: "Server Info",
|
|
43704
|
+
padding: false
|
|
43705
|
+
}), /*#__PURE__*/jsxs(DataList, {
|
|
43706
|
+
children: [/*#__PURE__*/jsx(DataList.Item, {
|
|
43707
|
+
label: "Connections",
|
|
43708
|
+
value: String(connectionCount)
|
|
43709
|
+
}), /*#__PURE__*/jsx(DataList.Item, {
|
|
43710
|
+
label: "Tools",
|
|
43711
|
+
value: String(toolCount)
|
|
43712
|
+
}), /*#__PURE__*/jsx(DataList.Item, {
|
|
43713
|
+
label: "Resources",
|
|
43714
|
+
value: String(resourceCount)
|
|
43715
|
+
}), /*#__PURE__*/jsx(DataList.Item, {
|
|
43716
|
+
label: "Uptime",
|
|
43717
|
+
value: formatUptime(uptime),
|
|
43718
|
+
divider: false
|
|
43719
|
+
})]
|
|
43720
|
+
})]
|
|
43721
|
+
}), running && token && /*#__PURE__*/jsxs("div", {
|
|
43722
|
+
className: "flex flex-col space-y-3",
|
|
43723
|
+
children: [/*#__PURE__*/jsx(SubHeading3, {
|
|
43724
|
+
title: "Client Configuration",
|
|
43725
|
+
padding: false
|
|
43726
|
+
}), /*#__PURE__*/jsx("span", {
|
|
43727
|
+
className: "text-xs opacity-50",
|
|
43728
|
+
children: "Add to your MCP client config (e.g. Claude Desktop):"
|
|
43729
|
+
}), /*#__PURE__*/jsx("pre", {
|
|
43730
|
+
className: "text-xs bg-black/20 rounded p-3 overflow-auto max-h-40 select-all",
|
|
43731
|
+
children: JSON.stringify({
|
|
43732
|
+
mcpServers: {
|
|
43733
|
+
dash: {
|
|
43734
|
+
url: "http://127.0.0.1:".concat(port, "/mcp"),
|
|
43735
|
+
headers: {
|
|
43736
|
+
Authorization: "Bearer ".concat(token)
|
|
43737
|
+
}
|
|
43738
|
+
}
|
|
43739
|
+
}
|
|
43740
|
+
}, null, 2)
|
|
43741
|
+
})]
|
|
43742
|
+
})]
|
|
43743
|
+
});
|
|
43744
|
+
};
|
|
43745
|
+
|
|
43249
43746
|
var SECTIONS = [{
|
|
43250
43747
|
key: "general",
|
|
43251
43748
|
label: "General",
|
|
@@ -43278,6 +43775,10 @@ var SECTIONS = [{
|
|
|
43278
43775
|
key: "notifications",
|
|
43279
43776
|
label: "Notifications",
|
|
43280
43777
|
icon: "bell"
|
|
43778
|
+
}, {
|
|
43779
|
+
key: "mcp-server",
|
|
43780
|
+
label: "MCP Server",
|
|
43781
|
+
icon: "server"
|
|
43281
43782
|
}];
|
|
43282
43783
|
var AppSettingsModal = function AppSettingsModal(_ref) {
|
|
43283
43784
|
var isOpen = _ref.isOpen,
|
|
@@ -43447,6 +43948,9 @@ var AppSettingsModal = function AppSettingsModal(_ref) {
|
|
|
43447
43948
|
children: /*#__PURE__*/jsx(GeneralSection, {})
|
|
43448
43949
|
}), activeSection === "notifications" && /*#__PURE__*/jsx(NotificationsSection, {
|
|
43449
43950
|
workspaces: workspaces
|
|
43951
|
+
}), activeSection === "mcp-server" && /*#__PURE__*/jsx("div", {
|
|
43952
|
+
className: "flex-1 overflow-y-auto p-6 ".concat(panelStyles.textColor || "text-gray-200"),
|
|
43953
|
+
children: /*#__PURE__*/jsx(McpServerSection, {})
|
|
43450
43954
|
})]
|
|
43451
43955
|
}), /*#__PURE__*/jsx(SettingsModal.Footer, {
|
|
43452
43956
|
children: /*#__PURE__*/jsx("div", {
|
|
@@ -47460,5 +47964,5 @@ var WorkspaceMenu = function WorkspaceMenu(_ref) {
|
|
|
47460
47964
|
|
|
47461
47965
|
ComponentManager.registerContainerTypes(LayoutContainer, LayoutGridContainer);
|
|
47462
47966
|
|
|
47463
|
-
export { ALGOLIA_ANALYTICS_FOR_QUERY, ALGOLIA_ANALYTICS_FOR_QUERY_COMPLETE, ALGOLIA_ANALYTICS_FOR_QUERY_ERROR, ALGOLIA_LIST_INDICES, ALGOLIA_LIST_INDICES_COMPLETE, ALGOLIA_LIST_INDICES_ERROR, AVAILABLE_COLORS, AddMenuItemModal, AdvancedMcpConfig, AppContext, AppSettingsModal, AppThemeScope, AppWrapper, CHOOSE_FILE, CHOOSE_FILE_COMPLETE, CHOOSE_FILE_ERROR, ColorModel, ComponentConfigModel, ComponentManager, ContextModel, DATA_JSON_TO_CSV_FILE, DATA_JSON_TO_CSV_FILE_COMPLETE, DATA_JSON_TO_CSV_FILE_ERROR, DATA_JSON_TO_CSV_STRING, DATA_JSON_TO_CSV_STRING_COMPLETE, DATA_JSON_TO_CSV_STRING_ERROR, DATA_READ_FROM_FILE, DATA_READ_FROM_FILE_COMPLETE, DATA_READ_FROM_FILE_ERROR, DATA_SAVE_TO_FILE, DATA_SAVE_TO_FILE_COMPLETE, DATA_SAVE_TO_FILE_ERROR, DashCommandPalette, DashNavbar, DashSidebar, DashTabBar, DashboardStage as Dashboard, DashboardApi, DashboardContext, DashboardFooter, DashboardHeader, DashboardMenuItem, DashboardModel, DashboardMonitor, DashboardPublisher, DashboardStage, DashboardThemeProvider, DashboardWrapper, ElectronDashboardApi, ErrorBoundary, ExternalWidget, GRID_CELL_WIDGET_TYPE, HARMONY_STRATEGIES, LAYOUT_LIST, LAYOUT_LIST_COMPLETE, LAYOUT_LIST_ERROR, LAYOUT_SAVE, LAYOUT_SAVE_COMPLETE, LAYOUT_SAVE_ERROR, Layout, LayoutBuilder, LayoutBuilderAddItemModal, LayoutBuilderConfigContainerMenuItem, LayoutBuilderConfigMenuItem, LayoutBuilderConfigModal, LayoutBuilderEditItemModal, LayoutBuilderEventModal, LayoutBuilderGridItem, LayoutContainer, LayoutDragBuilder, LayoutDragBuilderEdit, LayoutGridContainer, LayoutManagerModal, LayoutModel, LayoutQuickAddMenu, MCP_CALL_TOOL_COMPLETE, MCP_CALL_TOOL_ERROR, MCP_GET_CATALOG_COMPLETE, MCP_GET_CATALOG_ERROR, MCP_LIST_RESOURCES_COMPLETE, MCP_LIST_RESOURCES_ERROR, MCP_LIST_TOOLS_COMPLETE, MCP_LIST_TOOLS_ERROR, MCP_READ_RESOURCE_COMPLETE, MCP_READ_RESOURCE_ERROR, MCP_RUN_AUTH_COMPLETE, MCP_RUN_AUTH_ERROR, MCP_SERVER_STATUS_COMPLETE, MCP_SERVER_STATUS_ERROR, MCP_START_SERVER_COMPLETE, MCP_START_SERVER_ERROR, MCP_STOP_SERVER_COMPLETE, MCP_STOP_SERVER_ERROR, MENU_ITEMS_DELETE, MENU_ITEMS_DELETE_COMPLETE, MENU_ITEMS_DELETE_ERROR, MENU_ITEMS_LIST, MENU_ITEMS_LIST_COMPLETE, MENU_ITEMS_LIST_ERROR, MENU_ITEMS_SAVE, MENU_ITEMS_SAVE_COMPLETE, MENU_ITEMS_SAVE_ERROR, MainMenu, MainMenuItem, MainMenuSection, McpServerPicker, MenuItemModel, MenuSlideOverlay, MergeCellsModal, MissingProviderPrompt, MockDashboardApi, PROVIDER_DELETE_COMPLETE, PROVIDER_DELETE_ERROR, PROVIDER_GET_COMPLETE, PROVIDER_GET_ERROR, PROVIDER_LIST_COMPLETE, PROVIDER_LIST_ERROR, PROVIDER_SAVE_COMPLETE, PROVIDER_SAVE_ERROR, PanelCode, PanelEditItem, PanelEditItemHandlers, PanelEditItemNotifications, ProviderContext, ProviderErrorBoundary, ProviderForm, ProviderSelector, SECURE_STORAGE_ENCRYPT_STRING, SECURE_STORAGE_ENCRYPT_STRING_COMPLETE, SECURE_STORAGE_ENCRYPT_STRING_ERROR, SECURE_STORE_ENCRYPTION_CHECK, SECURE_STORE_ENCRYPTION_CHECK_COMPLETE, SECURE_STORE_ENCRYPTION_CHECK_ERROR, SECURE_STORE_GET_DATA, SECURE_STORE_GET_DATA_COMPLETE, SECURE_STORE_GET_DATA_ERROR, SECURE_STORE_SET_DATA, SECURE_STORE_SET_DATA_COMPLETE, SECURE_STORE_SET_DATA_ERROR, SETTINGS_GET, SETTINGS_GET_COMPLETE, SETTINGS_GET_ERROR, SETTINGS_SAVE, SETTINGS_SAVE_COMPLETE, SETTINGS_SAVE_ERROR, SIDEBAR_WIDGET_TYPE, SettingsModel, SideMenu, SplitCellModal, THEME_DELETE, THEME_DELETE_COMPLETE, THEME_DELETE_ERROR, THEME_EXTRACT_FROM_URL, THEME_EXTRACT_FROM_URL_COMPLETE, THEME_EXTRACT_FROM_URL_ERROR, THEME_LIST, THEME_LIST_COMPLETE, THEME_LIST_ERROR, THEME_MAP_PALETTE, THEME_MAP_PALETTE_COMPLETE, THEME_MAP_PALETTE_ERROR, THEME_SAVE, THEME_SAVE_COMPLETE, THEME_SAVE_ERROR, ThemeApi, ThemeColorDots, ThemeManagerModal, ThemeModel, ThemeWrapper, WORKSPACE_DELETE, WORKSPACE_DELETE_COMPLETE, WORKSPACE_DELETE_ERROR, WORKSPACE_LIST, WORKSPACE_LIST_COMPLETE, WORKSPACE_LIST_ERROR, WORKSPACE_SAVE, WORKSPACE_SAVE_COMPLETE, WORKSPACE_SAVE_ERROR, WebDashboardApi, Widget, WidgetApi, WidgetConfigPanel, WidgetContext, WidgetFactory, WidgetPopoutStage, WidgetProviderWrapper, WidgetSidebar, Workspace, WorkspaceContext, WorkspaceFooter, WorkspaceMenu, WorkspaceModel, addChildToLayoutItem, addItemToItemLayout, buildMcpConfigFromOverrides, canHaveChildren, changeDirectionForLayoutItem, createProviderRegistry, deriveFormFields, envMappingToRows, evaluateBundle, extractWidgetConfigs, formStateToMcpJson, formatFieldName, generateCustomTheme, generateHarmonyTheme, generateRandomTheme, generateThemeName, getBorderStyle, getChildrenForLayoutItem, getComponentInLayout, getContainerBorderColor, getContainerColor, getIndexOfLayoutChildrenForItem, getIndexOfLayoutItem, getLayoutItemById, getLayoutItemForWorkspace, getNearestParentWorkspace, getNextHighestId, getNextHighestItemInLayout, getNextHighestOrder, getNextHighestParentId, getNextLowestItemInLayout, getParentForLayoutItem, getParentWorkspaceForItem, getThemePresets, getUserConfigurableProviders, getWidgetsForWorkspace, getWorkspacesForWorkspace, headerTemplateToRows, isContainer, isLikelySecret, isMaxOrderForItem, isMinOrderForItem, isWidget, isWidgetResolvable, isWorkspace, layoutItemHasWorkspaceAsChild, loadWidgetBundle, mcpJsonToFormState, numChildrenForLayout, removeItemFromLayout, renderComponent, renderGridLayout, renderGridLayoutFlow, _renderLayout as renderLayout, renderLayoutMenu, replaceItemInLayout, resolveIcon, setHostModules, traverseParentTree, updateLayoutItem, updateParentForItem, useDashboard, useMcpProvider, useNotifications, useProvider, useProviderClient, useScheduler, useWebSocketProvider, useWidgetEvents, useWidgetProviders, useWidgetSchedulerStatus, validateCellMerge, validateGridCell, validateGridPlacement, validateWidgetPlacement, withProviderDetection };
|
|
47967
|
+
export { ALGOLIA_ANALYTICS_FOR_QUERY, ALGOLIA_ANALYTICS_FOR_QUERY_COMPLETE, ALGOLIA_ANALYTICS_FOR_QUERY_ERROR, ALGOLIA_LIST_INDICES, ALGOLIA_LIST_INDICES_COMPLETE, ALGOLIA_LIST_INDICES_ERROR, AVAILABLE_COLORS, AddMenuItemModal, AdvancedMcpConfig, AppContext, AppSettingsModal, AppThemeScope, AppWrapper, CHOOSE_FILE, CHOOSE_FILE_COMPLETE, CHOOSE_FILE_ERROR, ColorModel, ComponentConfigModel, ComponentManager, ContextModel, DATA_JSON_TO_CSV_FILE, DATA_JSON_TO_CSV_FILE_COMPLETE, DATA_JSON_TO_CSV_FILE_ERROR, DATA_JSON_TO_CSV_STRING, DATA_JSON_TO_CSV_STRING_COMPLETE, DATA_JSON_TO_CSV_STRING_ERROR, DATA_READ_FROM_FILE, DATA_READ_FROM_FILE_COMPLETE, DATA_READ_FROM_FILE_ERROR, DATA_SAVE_TO_FILE, DATA_SAVE_TO_FILE_COMPLETE, DATA_SAVE_TO_FILE_ERROR, DashCommandPalette, DashNavbar, DashSidebar, DashTabBar, DashboardStage as Dashboard, DashboardApi, DashboardContext, DashboardFooter, DashboardHeader, DashboardMenuItem, DashboardModel, DashboardMonitor, DashboardPublisher, DashboardStage, DashboardThemeProvider, DashboardWrapper, ElectronDashboardApi, ErrorBoundary, ExternalWidget, GRID_CELL_WIDGET_TYPE, HARMONY_STRATEGIES, LAYOUT_LIST, LAYOUT_LIST_COMPLETE, LAYOUT_LIST_ERROR, LAYOUT_SAVE, LAYOUT_SAVE_COMPLETE, LAYOUT_SAVE_ERROR, Layout, LayoutBuilder, LayoutBuilderAddItemModal, LayoutBuilderConfigContainerMenuItem, LayoutBuilderConfigMenuItem, LayoutBuilderConfigModal, LayoutBuilderEditItemModal, LayoutBuilderEventModal, LayoutBuilderGridItem, LayoutContainer, LayoutDragBuilder, LayoutDragBuilderEdit, LayoutGridContainer, LayoutManagerModal, LayoutModel, LayoutQuickAddMenu, MCP_CALL_TOOL_COMPLETE, MCP_CALL_TOOL_ERROR, MCP_GET_CATALOG_COMPLETE, MCP_GET_CATALOG_ERROR, MCP_LIST_RESOURCES_COMPLETE, MCP_LIST_RESOURCES_ERROR, MCP_LIST_TOOLS_COMPLETE, MCP_LIST_TOOLS_ERROR, MCP_READ_RESOURCE_COMPLETE, MCP_READ_RESOURCE_ERROR, MCP_RUN_AUTH_COMPLETE, MCP_RUN_AUTH_ERROR, MCP_SERVER_STATUS_COMPLETE, MCP_SERVER_STATUS_ERROR, MCP_START_SERVER_COMPLETE, MCP_START_SERVER_ERROR, MCP_STOP_SERVER_COMPLETE, MCP_STOP_SERVER_ERROR, MENU_ITEMS_DELETE, MENU_ITEMS_DELETE_COMPLETE, MENU_ITEMS_DELETE_ERROR, MENU_ITEMS_LIST, MENU_ITEMS_LIST_COMPLETE, MENU_ITEMS_LIST_ERROR, MENU_ITEMS_SAVE, MENU_ITEMS_SAVE_COMPLETE, MENU_ITEMS_SAVE_ERROR, MainMenu, MainMenuItem, MainMenuSection, McpServerPicker, MenuItemModel, MenuSlideOverlay, MergeCellsModal, MissingProviderPrompt, MockDashboardApi, PROVIDER_DELETE_COMPLETE, PROVIDER_DELETE_ERROR, PROVIDER_GET_COMPLETE, PROVIDER_GET_ERROR, PROVIDER_LIST_COMPLETE, PROVIDER_LIST_ERROR, PROVIDER_SAVE_COMPLETE, PROVIDER_SAVE_ERROR, PanelCode, PanelEditItem, PanelEditItemHandlers, PanelEditItemNotifications, ProviderContext, ProviderErrorBoundary, ProviderForm, ProviderSelector, SECURE_STORAGE_ENCRYPT_STRING, SECURE_STORAGE_ENCRYPT_STRING_COMPLETE, SECURE_STORAGE_ENCRYPT_STRING_ERROR, SECURE_STORE_ENCRYPTION_CHECK, SECURE_STORE_ENCRYPTION_CHECK_COMPLETE, SECURE_STORE_ENCRYPTION_CHECK_ERROR, SECURE_STORE_GET_DATA, SECURE_STORE_GET_DATA_COMPLETE, SECURE_STORE_GET_DATA_ERROR, SECURE_STORE_SET_DATA, SECURE_STORE_SET_DATA_COMPLETE, SECURE_STORE_SET_DATA_ERROR, SETTINGS_GET, SETTINGS_GET_COMPLETE, SETTINGS_GET_ERROR, SETTINGS_SAVE, SETTINGS_SAVE_COMPLETE, SETTINGS_SAVE_ERROR, SIDEBAR_WIDGET_TYPE, SettingsModel, SideMenu, SplitCellModal, THEME_DELETE, THEME_DELETE_COMPLETE, THEME_DELETE_ERROR, THEME_EXTRACT_FROM_URL, THEME_EXTRACT_FROM_URL_COMPLETE, THEME_EXTRACT_FROM_URL_ERROR, THEME_LIST, THEME_LIST_COMPLETE, THEME_LIST_ERROR, THEME_MAP_PALETTE, THEME_MAP_PALETTE_COMPLETE, THEME_MAP_PALETTE_ERROR, THEME_SAVE, THEME_SAVE_COMPLETE, THEME_SAVE_ERROR, ThemeApi, ThemeColorDots, ThemeManagerModal, ThemeModel, ThemeWrapper, WORKSPACE_DELETE, WORKSPACE_DELETE_COMPLETE, WORKSPACE_DELETE_ERROR, WORKSPACE_LIST, WORKSPACE_LIST_COMPLETE, WORKSPACE_LIST_ERROR, WORKSPACE_SAVE, WORKSPACE_SAVE_COMPLETE, WORKSPACE_SAVE_ERROR, WebDashboardApi, Widget, WidgetApi, WidgetConfigPanel, WidgetContext, WidgetFactory, WidgetPopoutStage, WidgetProviderWrapper, WidgetSidebar, Workspace, WorkspaceContext, WorkspaceFooter, WorkspaceMenu, WorkspaceModel, addChildToLayoutItem, addItemToItemLayout, buildMcpConfigFromOverrides, canHaveChildren, changeDirectionForLayoutItem, createProviderRegistry, deriveFormFields, envMappingToRows, evaluateBundle, extractWidgetConfigs, formStateToMcpJson, formatFieldName, generateCustomTheme, generateHarmonyTheme, generateRandomTheme, generateThemeName, getBorderStyle, getChildrenForLayoutItem, getComponentInLayout, getContainerBorderColor, getContainerColor, getIndexOfLayoutChildrenForItem, getIndexOfLayoutItem, getLayoutItemById, getLayoutItemForWorkspace, getNearestParentWorkspace, getNextHighestId, getNextHighestItemInLayout, getNextHighestOrder, getNextHighestParentId, getNextLowestItemInLayout, getParentForLayoutItem, getParentWorkspaceForItem, getThemePresets, getUserConfigurableProviders, getWidgetsForWorkspace, getWorkspacesForWorkspace, headerTemplateToRows, isContainer, isLikelySecret, isMaxOrderForItem, isMinOrderForItem, isWidget, isWidgetResolvable, isWorkspace, layoutItemHasWorkspaceAsChild, loadWidgetBundle, mcpJsonToFormState, numChildrenForLayout, removeItemFromLayout, renderComponent, renderGridLayout, renderGridLayoutFlow, _renderLayout as renderLayout, renderLayoutMenu, replaceItemInLayout, resolveIcon, setHostModules, traverseParentTree, updateLayoutItem, updateParentForItem, useDashboard, useMcpDashServer, useMcpProvider, useNotifications, useProvider, useProviderClient, useScheduler, useWebSocketProvider, useWidgetEvents, useWidgetProviders, useWidgetSchedulerStatus, validateCellMerge, validateGridCell, validateGridPlacement, validateWidgetPlacement, withProviderDetection };
|
|
47464
47968
|
//# sourceMappingURL=index.esm.js.map
|