Skip to content

Commit 54707cc

Browse files
committed
Add experimental_customMergeAllOf parameter to documentation, fix link with anchor
1 parent a7ef82c commit 54707cc

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

packages/docs/docs/api-reference/utility-functions.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ Returns the superset of `formData` that includes the given set updated to includ
899899
- [rootSchema]: S | undefined - The root schema, used to primarily to look up `$ref`s
900900
- [includeUndefinedValues=false]: boolean | "excludeObjectChildren" - Optional flag, if true, cause undefined values to be added as defaults. If "excludeObjectChildren", cause undefined values for this object and pass `includeUndefinedValues` as false when computing defaults for any nested object properties.
901901
- [experimental_defaultFormStateBehavior]: Experimental_DefaultFormStateBehavior - See `Form` documentation for the [experimental_defaultFormStateBehavior](./form-props.md#experimental_defaultFormStateBehavior) prop
902-
- [experimental_customMergeAllOf]: Experimental_CustomMergeAllOf<S> - See `Form` documentation for the [experimental_customMergeAllOf](./form-props.md#experimental_customMergeAllOf) prop
902+
- [experimental_customMergeAllOf]: Experimental_CustomMergeAllOf<S> - See `Form` documentation for the [experimental_customMergeAllOf](./form-props.md#experimental_custommergeallof) prop
903903

904904
#### Returns
905905

@@ -916,6 +916,7 @@ Determines whether the combination of `schema` and `uiSchema` properties indicat
916916
- [uiSchema={}]: UiSchema<T, S, F> - The UI schema from which to derive potentially displayable information
917917
- [rootSchema]: S | undefined - The root schema, used to primarily to look up `$ref`s
918918
- [globalOptions={}]: GlobalUISchemaOptions - The optional Global UI Schema from which to get any fallback `xxx` options
919+
- [experimental_customMergeAllOf]: Experimental_CustomMergeAllOf&lt;S&gt; - See `Form` documentation for the [experimental_customMergeAllOf](./form-props.md#experimental_custommergeallof) prop
919920

920921
#### Returns
921922

@@ -936,6 +937,7 @@ The closest match is determined using the number of matching properties, and mor
936937
- options: S[] - The list of options to find a matching options from
937938
- [selectedOption=-1]: number - The index of the currently selected option, defaulted to -1 if not specified
938939
- [discriminatorField]: string | undefined - The optional name of the field within the options object whose value is used to determine which option is selected
940+
- [experimental_customMergeAllOf]: Experimental_CustomMergeAllOf&lt;S&gt; - See `Form` documentation for the [experimental_customMergeAllOf](./form-props.md#experimental_custommergeallof) prop
939941

940942
#### Returns
941943

@@ -985,6 +987,7 @@ Checks to see if the `schema` and `uiSchema` combination represents an array of
985987
- schema: S - The schema for which check for array of files flag is desired
986988
- [uiSchema={}]: UiSchema<T, S, F> - The UI schema from which to check the widget
987989
- [rootSchema]: S | undefined - The root schema, used to primarily to look up `$ref`s
990+
- [experimental_customMergeAllOf]: Experimental_CustomMergeAllOf&lt;S&gt; - See `Form` documentation for the [experimental_customMergeAllOf](./form-props.md#experimental_custommergeallof) prop
988991

989992
#### Returns
990993

@@ -999,6 +1002,7 @@ Checks to see if the `schema` combination represents a multi-select
9991002
- validator: ValidatorType<T, S, F> - An implementation of the `ValidatorType` interface that will be used when necessary
10001003
- schema: S - The schema for which check for a multi-select flag is desired
10011004
- [rootSchema]: S | undefined - The root schema, used to primarily to look up `$ref`s
1005+
- [experimental_customMergeAllOf]: Experimental_CustomMergeAllOf&lt;S&gt; - See `Form` documentation for the [experimental_customMergeAllOf](./form-props.md#experimental_custommergeallof) prop
10021006

10031007
#### Returns
10041008

@@ -1013,6 +1017,7 @@ Checks to see if the `schema` combination represents a select
10131017
- validator: ValidatorType<T, S, F> - An implementation of the `ValidatorType` interface that will be used when necessary
10141018
- theSchema: S - The schema for which check for a select flag is desired
10151019
- [rootSchema]: S | undefined - The root schema, used to primarily to look up `$ref`s
1020+
- [experimental_customMergeAllOf]: Experimental_CustomMergeAllOf&lt;S&gt; - See `Form` documentation for the [experimental_customMergeAllOf](./form-props.md#experimental_custommergeallof) prop
10161021

10171022
#### Returns
10181023

@@ -1048,6 +1053,7 @@ potentially recursive resolution.
10481053
- schema: S - The schema for which retrieving a schema is desired
10491054
- [rootSchema={}]: S - The root schema that will be forwarded to all the APIs
10501055
- [rawFormData]: T | undefined - The current formData, if any, to assist retrieving a schema
1056+
- [experimental_customMergeAllOf]: Experimental_CustomMergeAllOf&lt;S&gt; - See `Form` documentation for the [experimental_customMergeAllOf](./form-props.md#experimental_custommergeallof) prop
10511057

10521058
#### Returns
10531059

@@ -1067,6 +1073,7 @@ Also, any properties in the old schema that are non-existent in the new schema a
10671073
- [newSchema]: S | undefined - The new schema for which the data is being sanitized
10681074
- [oldSchema]: S | undefined - The old schema from which the data originated
10691075
- [data={}]: any - The form data associated with the schema, defaulting to an empty object when undefined
1076+
- [experimental_customMergeAllOf]: Experimental_CustomMergeAllOf&lt;S&gt; - See `Form` documentation for the [experimental_customMergeAllOf](./form-props.md#experimental_custommergeallof) prop
10701077

10711078
#### Returns
10721079

@@ -1085,6 +1092,7 @@ Generates an `IdSchema` object for the `schema`, recursively
10851092
- [formData]: T | undefined - The current formData, if any, to assist retrieving a schema
10861093
- [idPrefix='root']: string - The prefix to use for the id
10871094
- [idSeparator='_']: string - The separator to use for the path segments in the id
1095+
- [experimental_customMergeAllOf]: Experimental_CustomMergeAllOf&lt;S&gt; - See `Form` documentation for the [experimental_customMergeAllOf](./form-props.md#experimental_custommergeallof) prop
10881096

10891097
#### Returns
10901098

@@ -1101,6 +1109,7 @@ Generates an `PathSchema` object for the `schema`, recursively
11011109
- [name='']: string - The base name for the schema
11021110
- [rootSchema]: S | undefined - The root schema, used to primarily to look up `$ref`s
11031111
- [formData]: T | undefined - The current formData, if any, to assist retrieving a schema
1112+
- [experimental_customMergeAllOf]: Experimental_CustomMergeAllOf&lt;S&gt; - See `Form` documentation for the [experimental_customMergeAllOf](./form-props.md#experimental_custommergeallof) prop
11041113

11051114
#### Returns
11061115

0 commit comments

Comments
 (0)