@rjsf/utils
Advanced tools
Comparing version 5.18.4 to 5.18.5
@@ -336,7 +336,7 @@ import type { ButtonHTMLAttributes, ChangeEvent, ComponentType, HTMLAttributes, ReactElement, ReactNode, StyleHTMLAttributes } from 'react'; | ||
/** A boolean value stating if the field is disabled */ | ||
disabled: boolean; | ||
disabled?: boolean; | ||
/** A boolean value stating if the field is hiding its errors */ | ||
hideError?: boolean; | ||
/** A boolean value stating if the field is read-only */ | ||
readonly: boolean; | ||
readonly?: boolean; | ||
/** The required status of this field */ | ||
@@ -480,3 +480,3 @@ required?: boolean; | ||
/** A boolean value stating if the array item is disabled */ | ||
disabled: boolean; | ||
disabled?: boolean; | ||
/** A boolean value stating whether new items can be added to the array */ | ||
@@ -507,3 +507,3 @@ canAdd: boolean; | ||
/** A boolean value stating if the array item is read-only */ | ||
readonly: boolean; | ||
readonly?: boolean; | ||
/** A stable, unique key for the array item */ | ||
@@ -562,5 +562,5 @@ key: string; | ||
/** A boolean value stating if the object property is disabled */ | ||
disabled: boolean; | ||
disabled?: boolean; | ||
/** A boolean value stating if the property is read-only */ | ||
readonly: boolean; | ||
readonly?: boolean; | ||
/** A boolean value stating if the property should be hidden */ | ||
@@ -567,0 +567,0 @@ hidden: boolean; |
{ | ||
"name": "@rjsf/utils", | ||
"version": "5.18.4", | ||
"version": "5.18.5", | ||
"main": "dist/index.js", | ||
@@ -89,3 +89,3 @@ "module": "lib/index.js", | ||
"license": "Apache-2.0", | ||
"gitHead": "63dbb6b8c98faa1c776cc6a66d47732a2be49cdf" | ||
"gitHead": "d5ef055f1b40c8837c13126777478bfc30dc9ade" | ||
} |
@@ -383,7 +383,7 @@ import type { | ||
/** A boolean value stating if the field is disabled */ | ||
disabled: boolean; | ||
disabled?: boolean; | ||
/** A boolean value stating if the field is hiding its errors */ | ||
hideError?: boolean; | ||
/** A boolean value stating if the field is read-only */ | ||
readonly: boolean; | ||
readonly?: boolean; | ||
/** The required status of this field */ | ||
@@ -549,3 +549,3 @@ required?: boolean; | ||
/** A boolean value stating if the array item is disabled */ | ||
disabled: boolean; | ||
disabled?: boolean; | ||
/** A boolean value stating whether new items can be added to the array */ | ||
@@ -576,3 +576,3 @@ canAdd: boolean; | ||
/** A boolean value stating if the array item is read-only */ | ||
readonly: boolean; | ||
readonly?: boolean; | ||
/** A stable, unique key for the array item */ | ||
@@ -637,5 +637,5 @@ key: string; | ||
/** A boolean value stating if the object property is disabled */ | ||
disabled: boolean; | ||
disabled?: boolean; | ||
/** A boolean value stating if the property is read-only */ | ||
readonly: boolean; | ||
readonly?: boolean; | ||
/** A boolean value stating if the property should be hidden */ | ||
@@ -642,0 +642,0 @@ hidden: boolean; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1625668