@phillips/seldon 1.117.0 → 1.118.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.
|
@@ -9,7 +9,9 @@ export interface InputProps extends Omit<React.ComponentProps<'input'>, 'size'>
|
|
|
9
9
|
*/
|
|
10
10
|
defaultValue?: string | number | readonly string[];
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
12
|
+
* Boolean to specify whether the `<input>` should be disabled.
|
|
13
|
+
* WARNING: disabled field values will NOT be submitted when a form is submitted according to the HTML spec.
|
|
14
|
+
* Instead use `readOnly` to prevent user input but still submit the value.
|
|
13
15
|
*/
|
|
14
16
|
disabled?: boolean;
|
|
15
17
|
/**
|