@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/index.js
CHANGED
|
@@ -2325,6 +2325,13 @@ var SchemaUtils = class {
|
|
|
2325
2325
|
this.experimental_defaultFormStateBehavior = experimental_defaultFormStateBehavior;
|
|
2326
2326
|
this.experimental_customMergeAllOf = experimental_customMergeAllOf;
|
|
2327
2327
|
}
|
|
2328
|
+
/** Returns the `rootSchema` in the `SchemaUtilsType`
|
|
2329
|
+
*
|
|
2330
|
+
* @returns - The `rootSchema`
|
|
2331
|
+
*/
|
|
2332
|
+
getRootSchema() {
|
|
2333
|
+
return this.rootSchema;
|
|
2334
|
+
}
|
|
2328
2335
|
/** Returns the `ValidatorType` in the `SchemaUtilsType`
|
|
2329
2336
|
*
|
|
2330
2337
|
* @returns - The `ValidatorType`
|