app-v3-scripts-editor 1.36.0 → 1.36.1
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/app-v3-scripts-editor.es.js +7387 -7337
- package/dist/app-v3-scripts-editor.umd.js +142 -142
- package/dist/src/lib/components/Blocks/Speak/settings/AudioPlayback.d.ts +1 -0
- package/dist/src/lib/components/Blocks/Speak/settings/PersonalizeTranscriptField.d.ts +1 -0
- package/dist/src/lib/components/Shared/AudioRecorder/index.d.ts +1 -0
- package/dist/src/lib/provider/node-base/index.d.ts +3 -1
- package/dist/src/lib/provider/settings-modal-provider/components/SettingsModal/index.css.d.ts +1 -0
- package/dist/src/lib/provider/settings-modal-provider/components/SettingsModal/index.d.ts +1 -0
- package/dist/src/lib/provider/settings-modal-provider/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { default as React } from 'react';
|
|
|
2
2
|
interface PersonalizeTranscriptFieldProps {
|
|
3
3
|
placeholder?: string;
|
|
4
4
|
rows?: number;
|
|
5
|
+
disabled?: boolean;
|
|
5
6
|
}
|
|
6
7
|
declare const PersonalizeTranscriptField: React.FC<PersonalizeTranscriptFieldProps>;
|
|
7
8
|
export default PersonalizeTranscriptField;
|
|
@@ -3,6 +3,7 @@ import { IUploadAudioResponse } from '../../../../services';
|
|
|
3
3
|
interface AudioRecorderProps {
|
|
4
4
|
onFinishRecord?: (response: IUploadAudioResponse) => void;
|
|
5
5
|
onStartRecord?: () => void;
|
|
6
|
+
disabled?: boolean;
|
|
6
7
|
}
|
|
7
8
|
declare const AudioRecorder: React.FC<AudioRecorderProps>;
|
|
8
9
|
export default AudioRecorder;
|
|
@@ -3,9 +3,11 @@ interface NodeBaseContextValue {
|
|
|
3
3
|
setIsHovered: React.Dispatch<React.SetStateAction<boolean>>;
|
|
4
4
|
isPopupDeleteOpen: boolean;
|
|
5
5
|
setIsPopupDeleteOption: React.Dispatch<React.SetStateAction<boolean>>;
|
|
6
|
+
isReadOnly: boolean;
|
|
6
7
|
}
|
|
7
|
-
export declare const NodeBaseProvider: ({ children, }: {
|
|
8
|
+
export declare const NodeBaseProvider: ({ children, isReadOnly, }: {
|
|
8
9
|
children: React.ReactNode;
|
|
10
|
+
isReadOnly?: boolean;
|
|
9
11
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
10
12
|
export declare const useNodeBase: () => NodeBaseContextValue;
|
|
11
13
|
export {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { default as React, ReactNode } from 'react';
|
|
2
2
|
interface SettingsModalContextType {
|
|
3
3
|
isOpen: boolean;
|
|
4
|
+
isReadOnly: boolean;
|
|
4
5
|
currentComponent: ReactNode | null;
|
|
5
6
|
currentTitle: string;
|
|
6
7
|
displayComponent: (component: ReactNode, title?: string, onClose?: () => void, id?: string) => void;
|