@paymanai/payman-ask-sdk 2.0.1 → 2.0.3
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 +95 -53
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +95 -53
- package/dist/index.mjs.map +1 -1
- package/dist/index.native.js +1 -14
- package/dist/index.native.js.map +1 -1
- package/dist/styles.css +15 -8
- package/dist/styles.css.map +1 -1
- package/package.json +2 -2
package/dist/index.native.js
CHANGED
|
@@ -650,17 +650,7 @@ function SessionList({
|
|
|
650
650
|
[sessions, formattedNow]
|
|
651
651
|
);
|
|
652
652
|
if (!isReady) {
|
|
653
|
-
return /* @__PURE__ */ jsxRuntime.
|
|
654
|
-
"Pass ",
|
|
655
|
-
/* @__PURE__ */ jsxRuntime.jsx(InlineCode, { children: "workflow.id" }),
|
|
656
|
-
" (or",
|
|
657
|
-
" ",
|
|
658
|
-
/* @__PURE__ */ jsxRuntime.jsx(InlineCode, { children: "workflow.name" }),
|
|
659
|
-
") and",
|
|
660
|
-
" ",
|
|
661
|
-
/* @__PURE__ */ jsxRuntime.jsx(InlineCode, { children: "session.owner.id" }),
|
|
662
|
-
" in your chat config to view recent sessions."
|
|
663
|
-
] });
|
|
653
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "payman-sidebar-notice-shell", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "payman-sidebar-notice", children: "Configure the chat settings." }) });
|
|
664
654
|
}
|
|
665
655
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
666
656
|
"div",
|
|
@@ -827,9 +817,6 @@ function Spinner({ size = 12 }) {
|
|
|
827
817
|
}
|
|
828
818
|
);
|
|
829
819
|
}
|
|
830
|
-
function InlineCode({ children }) {
|
|
831
|
-
return /* @__PURE__ */ jsxRuntime.jsx("code", { className: "payman-sidebar-inline-code", children });
|
|
832
|
-
}
|
|
833
820
|
function groupSessionsByDate(sessions, now) {
|
|
834
821
|
const groups = /* @__PURE__ */ new Map();
|
|
835
822
|
const orderedGroups = [];
|