@frontify/guideline-blocks-settings 0.37.6 → 0.38.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.
- package/dist/components/DownloadButton/DownloadButton.es.js +14 -20
- package/dist/components/DownloadButton/DownloadButton.es.js.map +1 -1
- package/dist/components/RichTextEditor/RichTextEditor.es.js +39 -40
- package/dist/components/RichTextEditor/RichTextEditor.es.js.map +1 -1
- package/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -427,10 +427,11 @@ export declare type DocumentSectionWithTitle = Omit<DocumentSection, 'title'> &
|
|
|
427
427
|
title: string;
|
|
428
428
|
};
|
|
429
429
|
|
|
430
|
-
export declare const DownloadButton: ({ onDownload }: DownloadButtonProps) => JSX_2.Element;
|
|
430
|
+
export declare const DownloadButton: ({ onDownload, ariaLabel }: DownloadButtonProps) => JSX_2.Element;
|
|
431
431
|
|
|
432
432
|
declare type DownloadButtonProps = {
|
|
433
433
|
onDownload: () => void;
|
|
434
|
+
ariaLabel?: string;
|
|
434
435
|
};
|
|
435
436
|
|
|
436
437
|
export declare const DragHandleToolbarButton: ({ tooltip, icon, setActivatorNodeRef, draggableProps, }: DragHandleToolbarButtonProps) => JSX_2.Element;
|
|
@@ -871,6 +872,9 @@ export declare type RichTextButtonStyle = 'primary' | 'secondary' | 'tertiary';
|
|
|
871
872
|
export declare const RichTextEditor: (props: RichTextEditorProps) => JSX_2.Element;
|
|
872
873
|
|
|
873
874
|
declare type RichTextEditorProps = {
|
|
875
|
+
/**
|
|
876
|
+
* @deprecated not needed anymore, handled automatically
|
|
877
|
+
*/
|
|
874
878
|
id?: string;
|
|
875
879
|
isEditing: boolean;
|
|
876
880
|
value?: string;
|