From 00082cb1ac4e1f1619893ea9379ffaa3fbebc875 Mon Sep 17 00:00:00 2001 From: CREDO23 Date: Mon, 22 Jun 2026 22:37:33 +0200 Subject: [PATCH] feat: export chat-artifacts slice --- surfsense_web/features/chat-artifacts/index.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 surfsense_web/features/chat-artifacts/index.ts diff --git a/surfsense_web/features/chat-artifacts/index.ts b/surfsense_web/features/chat-artifacts/index.ts new file mode 100644 index 000000000..f5c39a4a4 --- /dev/null +++ b/surfsense_web/features/chat-artifacts/index.ts @@ -0,0 +1,14 @@ +export { useSyncChatArtifacts } from "./hooks/use-sync-chat-artifacts"; +export { collectArtifacts } from "./lib/collect-artifacts"; +export { ARTIFACT_ANCHOR_ATTR, scrollToArtifact } from "./lib/scroll-to-artifact"; +export type { ArtifactKind, ArtifactStatus, ChatArtifact } from "./model/artifact"; +export { + artifactsPanelOpenAtom, + chatArtifactsAtom, + closeArtifactsPanelAtom, + openArtifactsPanelAtom, + toggleArtifactsPanelAtom, +} from "./state/artifacts-panel.atom"; +export { withArtifactAnchor } from "./ui/artifact-anchor"; +export { ArtifactsPanelContent, MobileArtifactsPanel } from "./ui/artifacts-panel"; +export { ArtifactsToggleButton } from "./ui/artifacts-toggle-button";