We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d896714 commit acda0f8Copy full SHA for acda0f8
src/plugin/utils/props.ts
@@ -57,6 +57,9 @@ export const sharedProps = {
57
// ? The column name of the field - [ All Fields ] //
58
name: '',
59
60
+ // ? If the field is used in a table this will remove the top padding //
61
+ tableField: true,
62
+
63
// ? The color of the underline - [ All Fields ] //
64
underlineColor: 'primary',
65
@@ -210,6 +213,9 @@ const textareaProps = {
210
213
// ? Automatically grow the textarea depending on amount of text //
211
214
autoGrow: true,
212
215
216
+ // ? The height of the textarea when autoGrow is false //
217
+ rows: 1,
218
219
// ? The variant of the field //
220
variant: 'underlined' as const,
221
},
0 commit comments