Merge pull request #16644 from konstantinmuenster/patch-3

Extend CustomFieldServerOptions types
This commit is contained in:
Rémi de Juvigny 2023-05-10 15:47:22 +02:00 committed by GitHub
commit bb5c73781f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,6 +21,14 @@ interface CustomFieldServerOptions {
* The existing Strapi data type the custom field uses
*/
type: string;
/**
* Settings for the input size in the Admin UI
*/
inputSize?: {
default: 4 | 6 | 8 | 12;
isResizable: boolean;
};
}
interface CustomFields {