@scalably/ui 0.6.4 → 0.6.5
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.d.cts +13 -1
- package/dist/index.d.ts +13 -1
- package/dist/index.esm.js +4 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2646,6 +2646,18 @@ interface RichTextEditorProps {
|
|
|
2646
2646
|
"data-testid"?: string;
|
|
2647
2647
|
/** Additional className for the outer container */
|
|
2648
2648
|
containerClassName?: string;
|
|
2649
|
+
/** Additional className for the border container (the rounded border wrapper) */
|
|
2650
|
+
borderContainerClassName?: string;
|
|
2651
|
+
/** Additional className for the toolbar wrapper */
|
|
2652
|
+
toolbarClassName?: string;
|
|
2653
|
+
/** Additional className for the content wrapper (controls padding, overflow, etc.) */
|
|
2654
|
+
contentClassName?: string;
|
|
2655
|
+
/** Additional className for the EditorContent component */
|
|
2656
|
+
editorClassName?: string;
|
|
2657
|
+
/** Additional className for the label element */
|
|
2658
|
+
labelClassName?: string;
|
|
2659
|
+
/** Additional className for the error/helper text container */
|
|
2660
|
+
messageContainerClassName?: string;
|
|
2649
2661
|
/**
|
|
2650
2662
|
* Optional handler for image uploads.
|
|
2651
2663
|
*
|
|
@@ -2850,7 +2862,7 @@ interface RichTextEditorProps {
|
|
|
2850
2862
|
* @see RichTextViewer - Read-only viewer component for displaying rich text content
|
|
2851
2863
|
*/
|
|
2852
2864
|
declare const RichTextEditor: {
|
|
2853
|
-
({ value, onChange, label, error, helperText, placeholder, minHeight, simple, disabled, "data-testid": dataTestId, containerClassName, onImageUpload, imageSourceMode, maxCharacters, onMaxLengthExceed, immediatelyRender, stickyToolbar, stickyOffset, hideToolbar, withBorder, enableBubbleMenu, enableFloatingMenu, floatingMenuTriggers, plusMenuYOffset, }: RichTextEditorProps): react_jsx_runtime.JSX.Element;
|
|
2865
|
+
({ value, onChange, label, error, helperText, placeholder, minHeight, simple, disabled, "data-testid": dataTestId, containerClassName, borderContainerClassName, toolbarClassName, contentClassName, editorClassName, labelClassName, messageContainerClassName, onImageUpload, imageSourceMode, maxCharacters, onMaxLengthExceed, immediatelyRender, stickyToolbar, stickyOffset, hideToolbar, withBorder, enableBubbleMenu, enableFloatingMenu, floatingMenuTriggers, plusMenuYOffset, }: RichTextEditorProps): react_jsx_runtime.JSX.Element;
|
|
2854
2866
|
displayName: string;
|
|
2855
2867
|
};
|
|
2856
2868
|
|
package/dist/index.d.ts
CHANGED
|
@@ -2646,6 +2646,18 @@ interface RichTextEditorProps {
|
|
|
2646
2646
|
"data-testid"?: string;
|
|
2647
2647
|
/** Additional className for the outer container */
|
|
2648
2648
|
containerClassName?: string;
|
|
2649
|
+
/** Additional className for the border container (the rounded border wrapper) */
|
|
2650
|
+
borderContainerClassName?: string;
|
|
2651
|
+
/** Additional className for the toolbar wrapper */
|
|
2652
|
+
toolbarClassName?: string;
|
|
2653
|
+
/** Additional className for the content wrapper (controls padding, overflow, etc.) */
|
|
2654
|
+
contentClassName?: string;
|
|
2655
|
+
/** Additional className for the EditorContent component */
|
|
2656
|
+
editorClassName?: string;
|
|
2657
|
+
/** Additional className for the label element */
|
|
2658
|
+
labelClassName?: string;
|
|
2659
|
+
/** Additional className for the error/helper text container */
|
|
2660
|
+
messageContainerClassName?: string;
|
|
2649
2661
|
/**
|
|
2650
2662
|
* Optional handler for image uploads.
|
|
2651
2663
|
*
|
|
@@ -2850,7 +2862,7 @@ interface RichTextEditorProps {
|
|
|
2850
2862
|
* @see RichTextViewer - Read-only viewer component for displaying rich text content
|
|
2851
2863
|
*/
|
|
2852
2864
|
declare const RichTextEditor: {
|
|
2853
|
-
({ value, onChange, label, error, helperText, placeholder, minHeight, simple, disabled, "data-testid": dataTestId, containerClassName, onImageUpload, imageSourceMode, maxCharacters, onMaxLengthExceed, immediatelyRender, stickyToolbar, stickyOffset, hideToolbar, withBorder, enableBubbleMenu, enableFloatingMenu, floatingMenuTriggers, plusMenuYOffset, }: RichTextEditorProps): react_jsx_runtime.JSX.Element;
|
|
2865
|
+
({ value, onChange, label, error, helperText, placeholder, minHeight, simple, disabled, "data-testid": dataTestId, containerClassName, borderContainerClassName, toolbarClassName, contentClassName, editorClassName, labelClassName, messageContainerClassName, onImageUpload, imageSourceMode, maxCharacters, onMaxLengthExceed, immediatelyRender, stickyToolbar, stickyOffset, hideToolbar, withBorder, enableBubbleMenu, enableFloatingMenu, floatingMenuTriggers, plusMenuYOffset, }: RichTextEditorProps): react_jsx_runtime.JSX.Element;
|
|
2854
2866
|
displayName: string;
|
|
2855
2867
|
};
|
|
2856
2868
|
|