@qwanyx/stack 0.2.33 → 0.2.35
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/AudioEditor.d.ts +3 -1
- package/dist/index.cjs.js +34 -34
- package/dist/index.esm.js +2693 -2693
- package/package.json +1 -1
|
@@ -13,5 +13,7 @@ export interface AudioEditorProps {
|
|
|
13
13
|
transcribing?: boolean;
|
|
14
14
|
/** Display variant: 'widget' has border/rounded corners, 'div' fills container */
|
|
15
15
|
variant?: 'widget' | 'div';
|
|
16
|
+
/** Hide the save button (useful when only transcribing) */
|
|
17
|
+
hideSaveButton?: boolean;
|
|
16
18
|
}
|
|
17
|
-
export declare function AudioEditor({ onComplete, onCancel: _onCancel, onTranscribe, transcribing, variant }: AudioEditorProps): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export declare function AudioEditor({ onComplete, onCancel: _onCancel, onTranscribe, transcribing, variant, hideSaveButton }: AudioEditorProps): import("react/jsx-runtime").JSX.Element;
|