@platecms/delta-smart-text 0.1.2 → 0.2.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/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
export declare function DeltaSlateEditor({ uuid, context }: {
|
|
2
|
+
export declare function DeltaSlateEditor({ uuid, context, isDisabled, }: {
|
|
3
3
|
uuid: string;
|
|
4
4
|
context: HTMLElement | null;
|
|
5
|
+
isDisabled: boolean;
|
|
5
6
|
}): React.ReactElement;
|
|
6
7
|
export default DeltaSlateEditor;
|
|
@@ -4,6 +4,7 @@ export declare class DeltaSlateEditorConnector {
|
|
|
4
4
|
private readonly uuid;
|
|
5
5
|
private readonly context;
|
|
6
6
|
private readonly client;
|
|
7
|
-
|
|
7
|
+
private readonly isDisabled?;
|
|
8
|
+
constructor(targetEl: HTMLElement, uuid: string, client: ApolloClient<NormalizedCacheObject>, context: HTMLElement | null, isDisabled?: boolean);
|
|
8
9
|
render(): void;
|
|
9
10
|
}
|