react-formule 1.8.0 → 1.9.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.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export default SchemaCodeEditor;
|
|
2
|
-
declare function SchemaCodeEditor({ valueType, value, height, lang, isReadOnly }: {
|
|
3
|
-
valueType
|
|
4
|
-
value
|
|
5
|
-
height
|
|
6
|
-
lang
|
|
7
|
-
isReadOnly
|
|
2
|
+
declare function SchemaCodeEditor({ valueType, value, height, lang, isReadOnly, }: {
|
|
3
|
+
valueType?: string | undefined;
|
|
4
|
+
value?: string | undefined;
|
|
5
|
+
height?: string | undefined;
|
|
6
|
+
lang?: string | undefined;
|
|
7
|
+
isReadOnly?: boolean | undefined;
|
|
8
8
|
}): import("react/jsx-runtime").JSX.Element;
|
package/dist/exposed.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { SetStateAction } from 'react';
|
|
2
2
|
import { RJSFSchema } from '@rjsf/utils';
|
|
3
3
|
import { FormuleContextProps } from './types';
|
|
4
|
+
import { default as RJSFForm } from './forms';
|
|
4
5
|
|
|
5
6
|
export declare const FormuleContext: ({ children, customFieldTypes, customFields, customWidgets, customPublishedFields, customPublishedWidgets, customFunctions, theme, separator, errorBoundary, synchronizeState, transformSchema, ai, }: FormuleContextProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
7
|
export declare const FormuleForm: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -41,3 +42,4 @@ export declare const deleteFromLocalStorage: (id: string) => Promise<SetStateAct
|
|
|
41
42
|
}[]>>;
|
|
42
43
|
export declare const loadFromLocalStorage: (id: string) => void;
|
|
43
44
|
export declare const isUnsaved: () => boolean;
|
|
45
|
+
export { RJSFForm };
|
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export { deleteFromLocalStorage } from './exposed';
|
|
|
7
7
|
export { loadFromLocalStorage } from './exposed';
|
|
8
8
|
export { isUnsaved } from './exposed';
|
|
9
9
|
export { FormuleForm } from './exposed';
|
|
10
|
+
export { RJSFForm } from './exposed';
|
|
10
11
|
export { default as PropertyEditor } from './admin/components/PropertyEditor';
|
|
11
12
|
export { default as SelectFieldType } from './admin/components/SelectFieldType';
|
|
12
13
|
export { default as SchemaCodeEditor } from './admin/components/SchemaCodeEditor';
|