@tangle-network/agent-app 0.45.37 → 0.45.38
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/assistant/index.js
CHANGED
|
@@ -9,7 +9,9 @@ import {
|
|
|
9
9
|
ChevronDown,
|
|
10
10
|
OVERLAY_SHADOW,
|
|
11
11
|
POPOVER_OPTION_FOCUS,
|
|
12
|
-
|
|
12
|
+
PopoverSurface,
|
|
13
|
+
usePending,
|
|
14
|
+
usePopover
|
|
13
15
|
} from "./chunk-3AXSERRK.js";
|
|
14
16
|
import {
|
|
15
17
|
UNTITLED_SESSION_LABEL,
|
|
@@ -3120,6 +3122,7 @@ function SeatPaywall({
|
|
|
3120
3122
|
import {
|
|
3121
3123
|
useCallback as useCallback8,
|
|
3122
3124
|
useEffect as useEffect9,
|
|
3125
|
+
useId as useId2,
|
|
3123
3126
|
useMemo as useMemo5,
|
|
3124
3127
|
useRef as useRef8,
|
|
3125
3128
|
useState as useState12
|
|
@@ -3802,6 +3805,8 @@ function SessionRow({
|
|
|
3802
3805
|
onSelectedChange
|
|
3803
3806
|
}) {
|
|
3804
3807
|
const [menuOpen, setMenuOpen] = useState12(false);
|
|
3808
|
+
const panelId = useId2();
|
|
3809
|
+
const { containerRef, triggerRef, panelRef, triggerProps } = usePopover(menuOpen, setMenuOpen);
|
|
3805
3810
|
const extras = extraActions?.(session) ?? [];
|
|
3806
3811
|
const hasMenu = Boolean(onRename) || Boolean(onDelete) || extras.length > 0;
|
|
3807
3812
|
const showUnread = Boolean(session.unread) && !responding;
|
|
@@ -3829,60 +3834,72 @@ function SessionRow({
|
|
|
3829
3834
|
)
|
|
3830
3835
|
] }),
|
|
3831
3836
|
/* @__PURE__ */ jsx11("span", { className: "shrink-0 text-xs tabular-nums text-muted-foreground", children: timestamp }),
|
|
3832
|
-
hasMenu && /* @__PURE__ */ jsxs9("div", { className: "relative shrink-0", children: [
|
|
3837
|
+
hasMenu && /* @__PURE__ */ jsxs9("div", { ref: containerRef, className: "relative shrink-0", children: [
|
|
3833
3838
|
/* @__PURE__ */ jsx11(
|
|
3834
3839
|
"button",
|
|
3835
3840
|
{
|
|
3836
3841
|
type: "button",
|
|
3842
|
+
...triggerProps,
|
|
3837
3843
|
"aria-label": "Session actions",
|
|
3838
|
-
"aria-
|
|
3844
|
+
"aria-controls": menuOpen ? panelId : void 0,
|
|
3839
3845
|
onClick: () => setMenuOpen((open) => !open),
|
|
3840
3846
|
className: "flex h-7 w-7 items-center justify-center rounded-md text-muted-foreground transition hover:bg-muted hover:text-foreground focus-visible:opacity-100 sm:opacity-0 sm:group-hover:opacity-100 aria-expanded:opacity-100",
|
|
3841
3847
|
children: /* @__PURE__ */ jsx11("span", { "aria-hidden": true, className: "text-base leading-none", children: "\u22EF" })
|
|
3842
3848
|
}
|
|
3843
3849
|
),
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
onDelete(session);
|
|
3850
|
+
/* @__PURE__ */ jsxs9(
|
|
3851
|
+
PopoverSurface,
|
|
3852
|
+
{
|
|
3853
|
+
open: menuOpen,
|
|
3854
|
+
id: panelId,
|
|
3855
|
+
role: "menu",
|
|
3856
|
+
triggerRef,
|
|
3857
|
+
panelRef,
|
|
3858
|
+
className: `w-36 overflow-hidden rounded-md border border-border bg-popover py-1 ${OVERLAY_SHADOW}`,
|
|
3859
|
+
children: [
|
|
3860
|
+
onRename && /* @__PURE__ */ jsx11(
|
|
3861
|
+
"button",
|
|
3862
|
+
{
|
|
3863
|
+
type: "button",
|
|
3864
|
+
role: "menuitem",
|
|
3865
|
+
onClick: () => {
|
|
3866
|
+
setMenuOpen(false);
|
|
3867
|
+
onRename(session);
|
|
3868
|
+
},
|
|
3869
|
+
className: "block w-full px-3 py-1.5 text-left text-xs text-foreground transition hover:bg-accent",
|
|
3870
|
+
children: renameLabel
|
|
3871
|
+
}
|
|
3872
|
+
),
|
|
3873
|
+
extras.map((action) => /* @__PURE__ */ jsx11(
|
|
3874
|
+
"button",
|
|
3875
|
+
{
|
|
3876
|
+
type: "button",
|
|
3877
|
+
role: "menuitem",
|
|
3878
|
+
onClick: () => {
|
|
3879
|
+
setMenuOpen(false);
|
|
3880
|
+
action.onSelect();
|
|
3881
|
+
},
|
|
3882
|
+
className: `block w-full px-3 py-1.5 text-left text-xs transition ${action.destructive ? "text-destructive hover:bg-destructive/10" : "text-foreground hover:bg-accent"}`,
|
|
3883
|
+
children: action.label
|
|
3879
3884
|
},
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
|
|
3885
|
+
action.id
|
|
3886
|
+
)),
|
|
3887
|
+
onDelete && /* @__PURE__ */ jsx11(
|
|
3888
|
+
"button",
|
|
3889
|
+
{
|
|
3890
|
+
type: "button",
|
|
3891
|
+
role: "menuitem",
|
|
3892
|
+
onClick: () => {
|
|
3893
|
+
setMenuOpen(false);
|
|
3894
|
+
onDelete(session);
|
|
3895
|
+
},
|
|
3896
|
+
className: "block w-full px-3 py-1.5 text-left text-xs text-destructive transition hover:bg-destructive/10",
|
|
3897
|
+
children: deleteLabel
|
|
3898
|
+
}
|
|
3899
|
+
)
|
|
3900
|
+
]
|
|
3901
|
+
}
|
|
3902
|
+
)
|
|
3886
3903
|
] })
|
|
3887
3904
|
] });
|
|
3888
3905
|
}
|
|
@@ -3893,7 +3910,7 @@ import {
|
|
|
3893
3910
|
isValidElement,
|
|
3894
3911
|
useCallback as useCallback9,
|
|
3895
3912
|
useEffect as useEffect10,
|
|
3896
|
-
useId as
|
|
3913
|
+
useId as useId3,
|
|
3897
3914
|
useMemo as useMemo6,
|
|
3898
3915
|
useRef as useRef9,
|
|
3899
3916
|
useState as useState13
|
|
@@ -4280,7 +4297,7 @@ function RecordGrid({
|
|
|
4280
4297
|
loadingRowCount = 3,
|
|
4281
4298
|
className
|
|
4282
4299
|
}) {
|
|
4283
|
-
const fieldPrefix =
|
|
4300
|
+
const fieldPrefix = useId3();
|
|
4284
4301
|
const [overlay, setOverlay] = useState13(EMPTY_RECORD_GRID_OVERLAY);
|
|
4285
4302
|
const [editing, setEditingState] = useState13(null);
|
|
4286
4303
|
const [cellErrors, setCellErrors] = useState13({});
|
|
@@ -4883,13 +4900,20 @@ function CellEditor({ column, rowLabel, text, invalid, describedBy, onText, onCo
|
|
|
4883
4900
|
}
|
|
4884
4901
|
function SourceMarker({ panelId, columnHeader, rowLabel, source, open, onToggle }) {
|
|
4885
4902
|
const basis = source.basis ?? "asserted";
|
|
4886
|
-
|
|
4903
|
+
const setOpen = useCallback9(
|
|
4904
|
+
(next) => {
|
|
4905
|
+
if (!next) onToggle();
|
|
4906
|
+
},
|
|
4907
|
+
[onToggle]
|
|
4908
|
+
);
|
|
4909
|
+
const { containerRef, triggerRef, panelRef, triggerProps } = usePopover(open, setOpen);
|
|
4910
|
+
return /* @__PURE__ */ jsxs10("span", { ref: containerRef, className: "relative inline-flex", children: [
|
|
4887
4911
|
/* @__PURE__ */ jsx12(
|
|
4888
4912
|
"button",
|
|
4889
4913
|
{
|
|
4890
4914
|
type: "button",
|
|
4915
|
+
...triggerProps,
|
|
4891
4916
|
"aria-label": `Source for ${columnHeader}, ${rowLabel}`,
|
|
4892
|
-
"aria-expanded": open,
|
|
4893
4917
|
"aria-controls": open ? panelId : void 0,
|
|
4894
4918
|
title: BASIS_TITLES[basis],
|
|
4895
4919
|
onClick: (event) => {
|
|
@@ -4912,12 +4936,15 @@ function SourceMarker({ panelId, columnHeader, rowLabel, source, open, onToggle
|
|
|
4912
4936
|
)
|
|
4913
4937
|
}
|
|
4914
4938
|
),
|
|
4915
|
-
|
|
4916
|
-
|
|
4939
|
+
/* @__PURE__ */ jsxs10(
|
|
4940
|
+
PopoverSurface,
|
|
4917
4941
|
{
|
|
4942
|
+
open,
|
|
4918
4943
|
id: panelId,
|
|
4919
4944
|
role: "note",
|
|
4920
|
-
|
|
4945
|
+
triggerRef,
|
|
4946
|
+
panelRef,
|
|
4947
|
+
className: `w-64 rounded-lg border border-border bg-popover p-3 text-left ${OVERLAY_SHADOW}`,
|
|
4921
4948
|
children: [
|
|
4922
4949
|
source.quote && /* @__PURE__ */ jsxs10("span", { className: "block border-l-2 border-primary/50 pl-2 text-xs italic leading-snug text-foreground", children: [
|
|
4923
4950
|
"\u201C",
|
|
@@ -5963,4 +5990,4 @@ export {
|
|
|
5963
5990
|
useThinkingSeconds,
|
|
5964
5991
|
ChatMessages
|
|
5965
5992
|
};
|
|
5966
|
-
//# sourceMappingURL=chunk-
|
|
5993
|
+
//# sourceMappingURL=chunk-HNVAASAO.js.map
|