@scalably/ui 0.7.6 → 0.7.7
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 +2 -8
- package/dist/index.d.ts +2 -8
- package/dist/index.esm.js +5 -5
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2946,14 +2946,8 @@ interface ProgressBarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
2946
2946
|
declare const ProgressBar: react.ForwardRefExoticComponent<ProgressBarProps & react.RefAttributes<HTMLDivElement>>;
|
|
2947
2947
|
|
|
2948
2948
|
interface BlockEditorProps {
|
|
2949
|
-
onSave?: (
|
|
2950
|
-
|
|
2951
|
-
css: string;
|
|
2952
|
-
}) => void;
|
|
2953
|
-
initialData?: {
|
|
2954
|
-
html?: string;
|
|
2955
|
-
css?: string;
|
|
2956
|
-
};
|
|
2949
|
+
onSave?: (contentHtml: string) => void;
|
|
2950
|
+
initialData?: string;
|
|
2957
2951
|
}
|
|
2958
2952
|
declare const BlockEditor: react__default.FC<BlockEditorProps>;
|
|
2959
2953
|
|
package/dist/index.d.ts
CHANGED
|
@@ -2946,14 +2946,8 @@ interface ProgressBarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
2946
2946
|
declare const ProgressBar: react.ForwardRefExoticComponent<ProgressBarProps & react.RefAttributes<HTMLDivElement>>;
|
|
2947
2947
|
|
|
2948
2948
|
interface BlockEditorProps {
|
|
2949
|
-
onSave?: (
|
|
2950
|
-
|
|
2951
|
-
css: string;
|
|
2952
|
-
}) => void;
|
|
2953
|
-
initialData?: {
|
|
2954
|
-
html?: string;
|
|
2955
|
-
css?: string;
|
|
2956
|
-
};
|
|
2949
|
+
onSave?: (contentHtml: string) => void;
|
|
2950
|
+
initialData?: string;
|
|
2957
2951
|
}
|
|
2958
2952
|
declare const BlockEditor: react__default.FC<BlockEditorProps>;
|
|
2959
2953
|
|