caplink-saas-ui-shared-component-library 1.69.0 → 1.71.0

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.
@@ -22,6 +22,7 @@ type RichTextEditorMenuProps = {
22
22
  editor: Editor;
23
23
  activeMenuButtons?: ActiveMenuButtons;
24
24
  menuChildren?: ReactNode;
25
+ anchorBaseUrl?: string;
25
26
  };
26
27
  export declare function RichTextMenu(props: RichTextEditorMenuProps): import("react/jsx-runtime").JSX.Element | null;
27
28
  export {};
@@ -6,7 +6,7 @@ export declare const RichText: {
6
6
  displayName: string;
7
7
  };
8
8
  Editor: {
9
- ({ className, maxLength, content, editable, placeholder, onChange, containerClassName, withMenu, activeMenuButtons, menuChildren, }: RichTextEditorProps): import("react/jsx-runtime").JSX.Element | null;
9
+ ({ className, maxLength, content, editable, placeholder, onChange, containerClassName, withMenu, activeMenuButtons, menuChildren, anchorBaseUrl, }: RichTextEditorProps): import("react/jsx-runtime").JSX.Element | null;
10
10
  displayName: string;
11
11
  };
12
12
  P_TAG_CLASS_NAME: string;
@@ -16,9 +16,10 @@ export type RichTextEditorProps = {
16
16
  }) => void;
17
17
  activeMenuButtons?: ActiveMenuButtons;
18
18
  menuChildren?: ReactNode;
19
+ anchorBaseUrl?: string;
19
20
  };
20
21
  declare const RichTextEditor: {
21
- ({ className, maxLength, content, editable, placeholder, onChange, containerClassName, withMenu, activeMenuButtons, menuChildren, }: RichTextEditorProps): import("react/jsx-runtime").JSX.Element | null;
22
+ ({ className, maxLength, content, editable, placeholder, onChange, containerClassName, withMenu, activeMenuButtons, menuChildren, anchorBaseUrl, }: RichTextEditorProps): import("react/jsx-runtime").JSX.Element | null;
22
23
  displayName: string;
23
24
  };
24
25
  export type RichTextViewerProps = {