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
| required |`boolean`|| Can the value be `undefined` or `null`|
105
-
| maxLength |`bigint`|| Maximum string length |
106
-
| minLength |`bigint`|| Minimum string length |
107
-
| pattern |`string`|| RegExp to check the field value |
108
-
| patternError |`string`|| The text of the validation error by `pattern`|
109
-
| enum |`string[]`|| An array of valid values, for example for a select |
110
-
| description |`Record<string, string>`|| Easy-to-understand names for values from `enum`|
111
-
| validator |`string`|| The key for determining the [validator](./config.md#validators) for the entity, if the value is empty, the base [validator](./config.md#validators) from the entity config will be used |
112
-
| viewSpec.disabled |`boolean`|| Is the field available for editing |
113
-
| viewSpec.type |`string`| yes | Key to define [Input](./config.md#inputs) for an entity |
114
-
| viewSpec.layout |`string`|| Key to define [Layout](./config.md#layouts) for an entity |
115
-
| viewSpec.layoutTitle |`string`|| Title for [Layout](./config.md#layouts)|
116
-
| viewSpec.layoutDescription |`string`|| Additional description/hint for [Layout](./config.md#layouts)|
117
-
| viewSpec.layoutOpen |`boolean`|| Expand [Layout](./config.md#layouts) at the first rendering |
118
-
| viewSpec.link |`any`|| A field containing information for forming a [link](#link) for a value |
119
-
| viewSpec.hideValues |`string[]`|| Values that are equated to empty, to exclude the rendering of unfilled fields (for example, for `enum` with `_UNSPECIFIED`) |
120
-
| viewSpec.sizeParams |`object`||[Parameters](#sizeparams) that must be passed for an input with dimensions |
121
-
| viewSpec.monacoParams |`object`||[Parameters](#monacoparams) that must be passed to Monaco editor |
122
-
| viewSpec.placeholder |`string`|| A short hint displayed in the field before the user enters the value |
123
-
| viewSpec.fileInput |`object`||[Parameters](#FileInput) that must be passed to file input |
124
-
| viewSpec.copy |`boolean`|| For `true`, will add a copy value button |
125
-
| viewSpec.hidden |`boolean`|| Hide field and view |
126
-
| viewSpec.textContentParams |`object`||[Parameters](#textcontentparams) that must be passed to text content |
127
-
| viewSpec.selectParams |`object`||[Parameters](#selectparams) additional options for the selector |
| required |`boolean`|| Can the value be `undefined` or `null`|
105
+
| maxLength |`bigint`|| Maximum string length |
106
+
| minLength |`bigint`|| Minimum string length |
107
+
| pattern |`string`|| RegExp to check the field value |
108
+
| patternError |`string`|| The text of the validation error by `pattern`|
109
+
| enum |`string[]`|| An array of valid values, for example for a select |
110
+
| description |`Record<string, string>`|| Easy-to-understand names for values from `enum`|
111
+
| validator |`string`|| The key for determining the [validator](./config.md#validators) for the entity, if the value is empty, the base [validator](./config.md#validators) from the entity config will be used |
112
+
| viewSpec.disabled |`boolean`|| Is the field available for editing |
113
+
| viewSpec.type |`string`| yes | Key to define [Input](./config.md#inputs) for an entity |
114
+
| viewSpec.layout |`string`|| Key to define [Layout](./config.md#layouts) for an entity |
115
+
| viewSpec.layoutTitle |`string`|| Title for [Layout](./config.md#layouts)|
116
+
| viewSpec.layoutDescription |`string`|| Additional description/hint for [Layout](./config.md#layouts)|
117
+
| viewSpec.layoutOpen |`boolean`|| Expand [Layout](./config.md#layouts) at the first rendering |
118
+
| viewSpec.link |`any`|| A field containing information for forming a [link](#link) for a value |
119
+
| viewSpec.hideValues |`string[]`|| Values that are equated to empty, to exclude the rendering of unfilled fields (for example, for `enum` with `_UNSPECIFIED`) |
120
+
| viewSpec.sizeParams |`object`||[Parameters](#sizeparams) that must be passed for an input with dimensions |
121
+
| viewSpec.monacoParams |`object`||[Parameters](#monacoparams) that must be passed to Monaco editor |
122
+
| viewSpec.placeholder |`string`|| A short hint displayed in the field before the user enters the value |
123
+
| viewSpec.fileInput |`object`||[Parameters](#FileInput) that must be passed to file input |
124
+
| viewSpec.copy |`boolean`|| For `true`, will add a copy value button |
125
+
| viewSpec.hidden |`boolean`|| Hide field and view |
126
+
| viewSpec.textContentParams |`object`||[Parameters](#textcontentparams) that must be passed to text content |
127
+
| viewSpec.selectParams |`object`||[Parameters](#selectparams) additional options for the selector |
128
+
| viewSpec.generateRandomValueButton |`boolean`|| Shows a button that allows you to generate a random value depending on the passed [function generateRandomValue](./lib.md#dynamicfield)|
0 commit comments