You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| readOnly | Read only boolean for all object when a boolean is provided, read only for specific keys when function is provided | Boolean | Function | False |`(keyName, data, keyPath, deep, dataType) => false`|
128
+
| readOnly | Read only boolean for all object when a boolean is provided, read only for specific keys when function is provided | Boolean / Function | False |`(keyName, data, keyPath, deep, dataType) => false`|
122
129
123
130
This function must return a boolean.
124
131
@@ -198,19 +205,41 @@ The library will add a `onClick` props on element.
| inputElement | Input Text Element to replace library one | Element | False |`<input />`|
208
+
| inputElement | Input Text Element to replace library one | Element / Function | False |`(usage, keyPath, deep, keyName, data, dataType) => <input />`|
202
209
203
210
The library will add a `placeholder`, `ref`, `defaultValue` props on element.
| textareaElement | Textarea Element to replace library one | Element | False |`<textarea />`|
227
+
| textareaElement | Textarea Element to replace library one | Element / Function | False |`(usage, keyPath, deep, keyName, data, dataType) => <textarea />`|
210
228
211
229
The library will add a `ref`, `defaultValue` props on element.
| onSubmitValueParser | Function called after each edit/update phase to parse raw data from inputElement or textareaElement component | Function | False |`(isEditMode, keyPath, deep, key, rawValue) => nativeParser(rawValue)`|
0 commit comments