@ditojs/admin 2.48.0 → 2.49.1

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/README.md CHANGED
@@ -85,7 +85,7 @@ There are a large variety of components for different data types and purposes. T
85
85
  | `type` | The type of the component, there are many different options like 'text', 'textarea', 'email', 'radio', 'select' etc. For more types see the examples below or consult the code. |
86
86
  | `options` | An array of options. Only required if the type is 'select', 'radio' or a similar type. The array can also contain label-value pairs (`[{label : 'Option 1', value : 1}, {label : 'Option 2', value : 6}]`). |
87
87
  | `width` | The width of the component. The value can be given in percent (e.g. '20%') or as 'auto'. There will be several components on one line until their percentage exeeds 100%. |
88
- | `required` | Boolean value if the field is required or not. Dito uses both backend and frontend validation both required validation as well as the validation of some types (like email) are only frontend. |
88
+ | `required` | Boolean value if the field is required or not. Dito.js uses both backend and frontend validation both required validation as well as the validation of some types (like email) are only frontend. |
89
89
 
90
90
  Also, a component can be a nested list. For example, if you are modelling people with children, then a list of children can be shown for every person with a component like this:
91
91