react-formule 0.1.0 → 1.0.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/LICENSE +21 -0
- package/README.md +124 -2
- package/dist/admin/components/Customize.d.ts +1 -9
- package/dist/admin/utils/fieldTypes.d.ts +1040 -256
- package/dist/exposed.d.ts +1 -1
- package/dist/forms/Form.d.ts +2 -1
- package/dist/forms/fields/CodeEditorField.d.ts +8 -0
- package/dist/forms/fields/index.d.ts +2 -0
- package/dist/forms/templates/ArrayFieldTemplates/LayerArrayFieldTemplate.d.ts +2 -1
- package/dist/forms/templates/Field/FieldModal.d.ts +8 -0
- package/dist/main.d.ts +1 -0
- package/dist/react-formule.js +126909 -129324
- package/dist/react-formule.umd.cjs +699 -704
- package/dist/store/configureStore.d.ts +2 -2
- package/dist/store/schemaWizard.d.ts +5 -2
- package/dist/utils/CodeEditor.d.ts +15 -0
- package/dist/utils/CodeViewer.d.ts +6 -2
- package/dist/utils/index.d.ts +1 -0
- package/package.json +26 -3
- package/dist/logo.png +0 -0
package/dist/exposed.d.ts
CHANGED
package/dist/forms/Form.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default RJSFForm;
|
|
2
|
-
declare function RJSFForm({ formRef, schema, uiSchema, formData, extraErrors, onChange, formContext, readonly, className, ObjectFieldTemplate: Objects, ArrayFieldTemplate: Arrays, FieldTemplate: Fields, fields, widgets, validate, tagName, liveValidate, showErrorList, }: {
|
|
2
|
+
declare function RJSFForm({ formRef, schema, uiSchema, formData, extraErrors, onChange, formContext, readonly, className, ObjectFieldTemplate: Objects, ArrayFieldTemplate: Arrays, FieldTemplate: Fields, fields, widgets, validate, tagName, liveValidate, showErrorList, transformErrors, }: {
|
|
3
3
|
formRef: any;
|
|
4
4
|
schema: any;
|
|
5
5
|
uiSchema: any;
|
|
@@ -18,6 +18,7 @@ declare function RJSFForm({ formRef, schema, uiSchema, formData, extraErrors, on
|
|
|
18
18
|
tagName: any;
|
|
19
19
|
liveValidate?: boolean | undefined;
|
|
20
20
|
showErrorList?: boolean | undefined;
|
|
21
|
+
transformErrors: any;
|
|
21
22
|
}): import("react/jsx-runtime").JSX.Element;
|
|
22
23
|
declare namespace RJSFForm {
|
|
23
24
|
namespace propTypes {
|
|
@@ -2,6 +2,8 @@ export default fields;
|
|
|
2
2
|
declare namespace fields {
|
|
3
3
|
export { TagsField as tags };
|
|
4
4
|
export { IdFetcher as idFetcher };
|
|
5
|
+
export { CodeEditorField as codeEditor };
|
|
5
6
|
}
|
|
6
7
|
import TagsField from "./TagsField";
|
|
7
8
|
import IdFetcher from "./IdFetcher";
|
|
9
|
+
import CodeEditorField from "./CodeEditorField";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export default LayerArrayFieldTemplate;
|
|
2
|
-
declare function LayerArrayFieldTemplate({ items }: {
|
|
2
|
+
declare function LayerArrayFieldTemplate({ items, uiSchema }: {
|
|
3
3
|
items?: any[] | undefined;
|
|
4
|
+
uiSchema: any;
|
|
4
5
|
}): import("react/jsx-runtime").JSX.Element | null;
|
|
5
6
|
declare namespace LayerArrayFieldTemplate {
|
|
6
7
|
namespace propTypes {
|
package/dist/main.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "./style.less";
|