@rjsf/utils 6.0.0-beta.11 → 6.0.0-beta.12
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/index.js +7 -0
- package/dist/index.js.map +2 -2
- package/dist/utils.esm.js +7 -0
- package/dist/utils.esm.js.map +2 -2
- package/dist/utils.umd.js +7 -0
- package/lib/createSchemaUtils.js +7 -0
- package/lib/createSchemaUtils.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types.d.ts +5 -0
- package/package.json +1 -1
- package/src/createSchemaUtils.ts +8 -0
- package/src/types.ts +5 -0
package/dist/utils.esm.js
CHANGED
|
@@ -2174,6 +2174,13 @@ var SchemaUtils = class {
|
|
|
2174
2174
|
this.experimental_defaultFormStateBehavior = experimental_defaultFormStateBehavior;
|
|
2175
2175
|
this.experimental_customMergeAllOf = experimental_customMergeAllOf;
|
|
2176
2176
|
}
|
|
2177
|
+
/** Returns the `rootSchema` in the `SchemaUtilsType`
|
|
2178
|
+
*
|
|
2179
|
+
* @returns - The `rootSchema`
|
|
2180
|
+
*/
|
|
2181
|
+
getRootSchema() {
|
|
2182
|
+
return this.rootSchema;
|
|
2183
|
+
}
|
|
2177
2184
|
/** Returns the `ValidatorType` in the `SchemaUtilsType`
|
|
2178
2185
|
*
|
|
2179
2186
|
* @returns - The `ValidatorType`
|