@6thbridge/hexa 0.0.0-pr51-61 → 0.0.0-pr51-62
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.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -678,6 +678,7 @@ type RichTextEditorProps = {
|
|
|
678
678
|
wrapperClassName?: string;
|
|
679
679
|
controls?: EditorControl[];
|
|
680
680
|
extraMenuNodes?: React.ReactNode;
|
|
681
|
+
placeholder?: string;
|
|
681
682
|
};
|
|
682
683
|
/**
|
|
683
684
|
* @component RichTextEditor
|
|
@@ -745,7 +746,7 @@ type RichTextEditorProps = {
|
|
|
745
746
|
* <a href="https://example.com">A link</a>
|
|
746
747
|
* ```
|
|
747
748
|
*/
|
|
748
|
-
declare const RichTextEditor: ({ label, helpText, error, value, onChange, optional, isRequired, extensions, editorClassName, wrapperClassName, controls, extraMenuNodes, }: RichTextEditorProps) => react_jsx_runtime.JSX.Element | null;
|
|
749
|
+
declare const RichTextEditor: ({ label, helpText, error, value, onChange, optional, isRequired, extensions, editorClassName, wrapperClassName, controls, extraMenuNodes, placeholder, }: RichTextEditorProps) => react_jsx_runtime.JSX.Element | null;
|
|
749
750
|
|
|
750
751
|
declare const CurrencySymbolMap: Record<string, string>;
|
|
751
752
|
interface FormatCurrencyOptions {
|
package/dist/index.d.ts
CHANGED
|
@@ -678,6 +678,7 @@ type RichTextEditorProps = {
|
|
|
678
678
|
wrapperClassName?: string;
|
|
679
679
|
controls?: EditorControl[];
|
|
680
680
|
extraMenuNodes?: React.ReactNode;
|
|
681
|
+
placeholder?: string;
|
|
681
682
|
};
|
|
682
683
|
/**
|
|
683
684
|
* @component RichTextEditor
|
|
@@ -745,7 +746,7 @@ type RichTextEditorProps = {
|
|
|
745
746
|
* <a href="https://example.com">A link</a>
|
|
746
747
|
* ```
|
|
747
748
|
*/
|
|
748
|
-
declare const RichTextEditor: ({ label, helpText, error, value, onChange, optional, isRequired, extensions, editorClassName, wrapperClassName, controls, extraMenuNodes, }: RichTextEditorProps) => react_jsx_runtime.JSX.Element | null;
|
|
749
|
+
declare const RichTextEditor: ({ label, helpText, error, value, onChange, optional, isRequired, extensions, editorClassName, wrapperClassName, controls, extraMenuNodes, placeholder, }: RichTextEditorProps) => react_jsx_runtime.JSX.Element | null;
|
|
749
750
|
|
|
750
751
|
declare const CurrencySymbolMap: Record<string, string>;
|
|
751
752
|
interface FormatCurrencyOptions {
|