mainstack-design-system 0.7.25 → 0.7.26
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/build/index.d.ts +2 -1
- package/build/mainstack-design-system.js +4341 -4314
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -794,6 +794,7 @@ declare interface IMarkdownEditor {
|
|
|
794
794
|
handleGenerateAiDescription?: () => void;
|
|
795
795
|
isLoading?: boolean;
|
|
796
796
|
hasGenerateWithAi?: boolean;
|
|
797
|
+
aiResponse?: string;
|
|
797
798
|
}
|
|
798
799
|
|
|
799
800
|
export declare const InfoFilledIcon: (props: IconProps) => JSX_2.Element;
|
|
@@ -971,7 +972,7 @@ export declare const MailIcon: (props: IconProps) => JSX_2.Element;
|
|
|
971
972
|
|
|
972
973
|
export { MainstackProvider }
|
|
973
974
|
|
|
974
|
-
export declare const MarkdownEditor: ({ defaultValue, onChange, border, placeholder, value, onHandleFile, label, handleGenerateAiDescription, hasGenerateWithAi, ...props }: MarkdownEditorWithExclusiveValues) => JSX_2.Element;
|
|
975
|
+
export declare const MarkdownEditor: ({ defaultValue, onChange, border, placeholder, value, onHandleFile, label, handleGenerateAiDescription, hasGenerateWithAi, isLoading, aiResponse, ...props }: MarkdownEditorWithExclusiveValues) => JSX_2.Element;
|
|
975
976
|
|
|
976
977
|
declare type MarkdownEditorWithExclusiveValues = (IMarkdownEditor & {
|
|
977
978
|
value?: string;
|