@modelnex/sdk 0.5.10 → 0.5.11

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.d.mts CHANGED
@@ -480,7 +480,7 @@ interface ModelNexOnboardingPanelProps {
480
480
  appName?: string;
481
481
  title?: string;
482
482
  }
483
- declare function ModelNexOnboardingPanel({ appName, title, }: ModelNexOnboardingPanelProps): react_jsx_runtime.JSX.Element;
483
+ declare function ModelNexOnboardingPanel({ appName, title, }: ModelNexOnboardingPanelProps): react_jsx_runtime.JSX.Element | null;
484
484
 
485
485
  /**
486
486
  * Toggle and read the action-highlight overlay state.
package/dist/index.d.ts CHANGED
@@ -480,7 +480,7 @@ interface ModelNexOnboardingPanelProps {
480
480
  appName?: string;
481
481
  title?: string;
482
482
  }
483
- declare function ModelNexOnboardingPanel({ appName, title, }: ModelNexOnboardingPanelProps): react_jsx_runtime.JSX.Element;
483
+ declare function ModelNexOnboardingPanel({ appName, title, }: ModelNexOnboardingPanelProps): react_jsx_runtime.JSX.Element | null;
484
484
 
485
485
  /**
486
486
  * Toggle and read the action-highlight overlay state.
package/dist/index.js CHANGED
@@ -10462,48 +10462,7 @@ function ModelNexOnboardingPanel({
10462
10462
  );
10463
10463
  }
10464
10464
  if (!playback.isActive || !playback.activeTour) {
10465
- return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
10466
- "div",
10467
- {
10468
- "data-modelnex-internal": "true",
10469
- style: {
10470
- position: "fixed",
10471
- right: "24px",
10472
- bottom: "24px",
10473
- width: "360px",
10474
- maxWidth: "calc(100vw - 32px)",
10475
- borderRadius: "18px",
10476
- border: `1px solid ${PANEL_THEME2.border}`,
10477
- background: PANEL_THEME2.shell,
10478
- boxShadow: "0 8px 32px rgba(15, 23, 42, 0.08)",
10479
- overflow: "hidden",
10480
- zIndex: 100004,
10481
- color: "#172033",
10482
- fontFamily: 'ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif',
10483
- padding: "20px 18px",
10484
- display: "flex",
10485
- gap: "12px",
10486
- alignItems: "center"
10487
- },
10488
- children: [
10489
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { style: {
10490
- width: "36px",
10491
- height: "36px",
10492
- borderRadius: "50%",
10493
- background: PANEL_THEME2.hero,
10494
- display: "flex",
10495
- alignItems: "center",
10496
- justifyContent: "center",
10497
- flexShrink: 0,
10498
- fontSize: "18px"
10499
- }, children: "\u{1F3AF}" }),
10500
- /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { children: [
10501
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { style: { fontSize: "13px", fontWeight: 700, color: "#172033", marginBottom: "2px" }, children: "Workflow" }),
10502
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { style: { fontSize: "12px", color: "#6b7280" }, children: "Ready \u2014 onboarding will appear here when available." })
10503
- ] })
10504
- ]
10505
- }
10506
- );
10465
+ return null;
10507
10466
  }
10508
10467
  if (!open) {
10509
10468
  return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
package/dist/index.mjs CHANGED
@@ -10252,48 +10252,7 @@ function ModelNexOnboardingPanel({
10252
10252
  );
10253
10253
  }
10254
10254
  if (!playback.isActive || !playback.activeTour) {
10255
- return /* @__PURE__ */ jsxs4(
10256
- "div",
10257
- {
10258
- "data-modelnex-internal": "true",
10259
- style: {
10260
- position: "fixed",
10261
- right: "24px",
10262
- bottom: "24px",
10263
- width: "360px",
10264
- maxWidth: "calc(100vw - 32px)",
10265
- borderRadius: "18px",
10266
- border: `1px solid ${PANEL_THEME2.border}`,
10267
- background: PANEL_THEME2.shell,
10268
- boxShadow: "0 8px 32px rgba(15, 23, 42, 0.08)",
10269
- overflow: "hidden",
10270
- zIndex: 100004,
10271
- color: "#172033",
10272
- fontFamily: 'ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif',
10273
- padding: "20px 18px",
10274
- display: "flex",
10275
- gap: "12px",
10276
- alignItems: "center"
10277
- },
10278
- children: [
10279
- /* @__PURE__ */ jsx5("div", { style: {
10280
- width: "36px",
10281
- height: "36px",
10282
- borderRadius: "50%",
10283
- background: PANEL_THEME2.hero,
10284
- display: "flex",
10285
- alignItems: "center",
10286
- justifyContent: "center",
10287
- flexShrink: 0,
10288
- fontSize: "18px"
10289
- }, children: "\u{1F3AF}" }),
10290
- /* @__PURE__ */ jsxs4("div", { children: [
10291
- /* @__PURE__ */ jsx5("div", { style: { fontSize: "13px", fontWeight: 700, color: "#172033", marginBottom: "2px" }, children: "Workflow" }),
10292
- /* @__PURE__ */ jsx5("div", { style: { fontSize: "12px", color: "#6b7280" }, children: "Ready \u2014 onboarding will appear here when available." })
10293
- ] })
10294
- ]
10295
- }
10296
- );
10255
+ return null;
10297
10256
  }
10298
10257
  if (!open) {
10299
10258
  return /* @__PURE__ */ jsx5(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modelnex/sdk",
3
- "version": "0.5.10",
3
+ "version": "0.5.11",
4
4
  "description": "React SDK for natural language control of web apps via AI agents",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",