@blocklet/discuss-kit-ux 1.6.242 → 1.6.244

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.
@@ -0,0 +1,6 @@
1
+ export declare const useChatInWallet: () => {
2
+ navigateToChat: ({ id, title }: {
3
+ id: string;
4
+ title: string;
5
+ }) => void;
6
+ };
@@ -1,4 +1,4 @@
1
- export { default as Input } from './input';
1
+ export { default as Input, preloadInput } from './input';
2
2
  export { default as CommentInput } from './comment-input';
3
3
  export { default as PostEdit } from './post-edit';
4
4
  export { default as ScrollableEditorWrapper } from './scrollable-editor-wrapper';
@@ -1,6 +1,7 @@
1
1
  import { EditorState } from 'lexical';
2
2
  import { BoxProps } from '@mui/material';
3
3
 
4
+ export declare const preloadInput: () => Promise<typeof import('@blocklet/editor').default>;
4
5
  export type Send = (content: string) => Promise<any>;
5
6
  interface RenderProps {
6
7
  content: EditorState | null;
@@ -4,7 +4,7 @@ import { OnContentChangePlugin } from "@blocklet/editor/lib/ext/OnContentChangeP
4
4
  import { CtrlsShortcutPlugin } from "@blocklet/editor/lib/ext/ShortcutPlugin";
5
5
  import { SafeAreaPlugin } from "@blocklet/editor/lib/ext/SafeAreaPlugin";
6
6
  import { lazy } from "react";
7
- import { i as inferInitialEditorState, I as ImagePathFixerPlugin, V as VideoPathFixerPlugin, a as isEmptyContent, s as stringify, g as getExcerptSync } from "./index-Cy-AzaWZ.mjs";
7
+ import { i as inferInitialEditorState, I as ImagePathFixerPlugin, V as VideoPathFixerPlugin, a as isEmptyContent, s as stringify, g as getExcerptSync } from "./index-C30pyzPN.mjs";
8
8
  const BlockletEditor = lazy(() => import("@blocklet/editor"));
9
9
  const Root = styled(Box)`
10
10
  .be-editable,