Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FieldInputConfig

import type { FieldInputConfig } from "https://aws-api.deno.dev/v0.4/services/amplifyuibuilder.ts?docs=full";

Describes the configuration for the default input values to display for a field.

interface FieldInputConfig {
defaultChecked?: boolean | null;
defaultCountryCode?: string | null;
defaultValue?: string | null;
descriptiveText?: string | null;
isArray?: boolean | null;
maxValue?: number | null;
minValue?: number | null;
name?: string | null;
placeholder?: string | null;
readOnly?: boolean | null;
required?: boolean | null;
step?: number | null;
type: string;
value?: string | null;
valueMappings?: ValueMappings | null;
}

§Properties

§
defaultChecked?: boolean | null
[src]

Specifies whether a field has a default value.

§
defaultCountryCode?: string | null
[src]

The default country code for a phone number.

§
defaultValue?: string | null
[src]

The default value for the field.

§
descriptiveText?: string | null
[src]

The text to display to describe the field.

§
isArray?: boolean | null
[src]

Specifies whether to render the field as an array. This property is ignored if the dataSourceType for the form is a Data Store.

§
maxValue?: number | null
[src]

The maximum value to display for the field.

§
minValue?: number | null
[src]

The minimum value to display for the field.

§
name?: string | null
[src]

The name of the field.

§
placeholder?: string | null
[src]

The text to display as a placeholder for the field.

§
readOnly?: boolean | null
[src]

Specifies a read only field.

§
required?: boolean | null
[src]

Specifies a field that requires input.

§
step?: number | null
[src]

The stepping increment for a numeric value in a field.

§
type: string
[src]

The input type for the field.

§
value?: string | null
[src]

The value for the field.

§
valueMappings?: ValueMappings | null
[src]

The information to use to customize the input fields with data at runtime.