Optional autoIndica se o MultiLineInput deve receber foco automaticamente. Example:
<MultiLineInput autoFocus={true} />
Optional autofocusQuando definido como true, o campo de MultiLineInput receberá o foco automaticamente quando a página for carregada. Example:
<MultiLineInput
autofocus={true}
/>
Optional backgroundBackground color of component
Check the token table to know which values to use
Example:
<backgroundColor="background-color" />
Optional borderborderColor sets the color of borders in the design system, allowing you to control the visual appearance of elements' outlines.
Check the token table to know which values to use
Example:
<borderColor="neutral-900" />
Optional borderDefines the border style of a component. You need to define borderWidth before use this property.
Example:
<View borderWidth="hairline" borderStyle="dashed" />
Optional borderborderBottomWidth focuses on adjusting the thickness of the bottom border in the design system, allowing you to fine-tune the visual appearance of the bottom border for elements.
Check the token table to know which values to use
Example:
<borderBottomWidth="hairline" />
Optional borderBorder Color of component
Check the token table to know which values to use
Example:
<borderColor="neutral-900" />
Optional borderRemoves the borders of the MultiLineInput. Example:
<MultiLineInput borderHidden={true}/>
Optional borderDefines the border style of a component. You need to define borderWidth before use this property.
Example:
<View borderWidth="hairline" borderStyle="dashed" />
Optional borderborderBottomWidth is used to control the thickness of the bottom border in the design system, giving you control over the visual appearance of the bottom edges of elements.
Check the token table to know which values to use
Example:
<borderBottomWidth="hairline" />
Optional borderborderRadius defines the roundness or curvature of corners in the design system, allowing you to create different shapes and styles for elements by adjusting this property.
Check the token table to know which values to use
Example:
<borderRadius="micro" />
Optional borderborderRadiusLeftBottom defines the roundness or curvature of corners in the design system, allowing you to create different shapes and styles for elements by adjusting this property.
Check the token table to know which values to use
Example:
<borderRadiusLeftBottom="micro" />
Optional borderborderRadiusLeftTop defines the roundness or curvature of corners in the design system, allowing you to create different shapes and styles for elements by adjusting this property.
Check the token table to know which values to use
Example:
<borderRadiusLeftTop="micro" />
Optional borderborderRadiusRightBottom defines the roundness or curvature of corners in the design system, allowing you to create different shapes and styles for elements by adjusting this property.
Check the token table to know which values to use
Example:
<borderRadiusRightBottom="micro" />
Optional borderborderRadiusRightTop defines the roundness or curvature of corners in the design system, allowing you to create different shapes and styles for elements by adjusting this property.
Check the token table to know which values to use
Example:
<borderRadiusRightTop="micro" />
Optional borderDefines the border style of a component. You need to define borderWidth before use this property.
Example:
<View borderWidth="hairline" borderStyle="dashed" />
Optional borderborderRightWidth is used to control the thickness of the right border in the design system, giving you control over the visual appearance of the right edges of elements.
Check the token table to know which values to use
Example:
<borderRightWidth="hairline" />
Optional borderDefines the border style of a component. You need to define borderWidth before use this property.
Example:
<View borderWidth="hairline" borderStyle="dashed" />
Optional borderDefines the border style of a component. You need to define borderWidth before use this property.
Example:
<View borderWidth="hairline" borderStyle="dashed" />
Optional borderborderTopWidth specifically adjusts the thickness of the top border in the design system, giving you precise control over the visual aspect of the top border of elements.
Check the token table to know which values to use
Example:
<borderTopWidth="hairline" />
Optional borderThe borderWidth determines the thickness of borders in the design system.
It's a crucial property for defining the visual weight of elements.
Check the token table to know which values to use
Example:
<borderWidth="hairline" />
Optional colorText color of components
Check the token table to know which values to use
Example:
<color="neutral-900" />
Optional content"Use contrast colors for text and background"
Example:
<View contentColors backgroundColor="primary-500" />
Optional disabledIndica se o MultiLineInput está desabilitado. Example:
<MultiLineInput disabled={true} />
Optional displayChanges the element exhibition
Example:
<display="flex"/>
Optional heightAdjust component height
Example:
<height={100} />
Optional id"Fills the ID of the element (not very practical)."
Example:
<View id="id" />
Optional maxAdjust component maximum height
Example:
<maxHeight={100} />
Optional maxO limite de caracteres do MultiLineInput Example:
<MultiLineInput maxLength={10}/>
Optional maxAdjust component maximum width
Example:
<maxwidth={100} />
Optional minAdjust component minimum height
Example:
<minHeight={100} />
Optional minQuando definido como true, o checkbox será exibido como marcado por padrão. Example:
<MultiLineInput
minLength={6}
/>
Optional minAdjust component minimum width
Example:
<minWidth={100} />
Optional nameDefine o atributo name do elemento de MultiLineInput. Esse atributo é frequentemente usado em formulários para identificar os campos quando os dados são enviados. Example:
<MultiLineInput
name="username"
/>
Optional onFunção chamada quando o MultiLineInput perde o foco. Example:
<MultiLineInput onBlur={this.myFuncion}/>
O valor do MultiLineInput.
Função chamada quando o valor do MultiLineInput é alterado. Example:
<MultiLineInput onChange={this.myFuncion}/>
O valor do MultiLineInput.
Optional onFunção chamada quando o MultiLineInput ganha o foco. Example:
<MultiLineInput onFocus={this.myFuncion}/>
O valor do MultiLineInput.
Optional onFunção chamada quando o MultiLineInput ganha é submetido. Example:
<MultiLineInput onFocus={this.myFuncion}/>
O valor do MultiLineInput.
Optional opacityChanges the element opacity
Example:
<opacity="light" />
Optional placeholderA dica ou instrução breve para o usuário sobre o valor esperado no campo de entrada. Example:
<MultiLineInput placeholder="text" />
Optional readonlyDefine se o campo de MultiLineInput é somente leitura. Quando definido como true, os usuários não poderão editar o conteúdo do campo. Example:
<MultiLineInput
readonly={true}
/>
Optional requiredIndica se o campo de MultiLineInput é obrigatório. Se definido como true, um aviso será exibido se o usuário tentar enviar o formulário sem preencher este campo. Example:
<MultiLineInput
required={true}
/>
Optional spellcheckDetermina se o corretor ortográfico do navegador deve verificar o conteúdo do campo de input. Example:
<MultiLineInput
spellcheck={true}
/>
Optional transform"Prepare a position transforming of element"
Example:
<View transform="rotate(45deg)" />
Optional transition"Prepare a transition of visual state change"
Example:
<View transition="background-color 0.5s ease-in-out" />
Optional valueO valor atual do MultiLineInput. Example:
<MultiLineInput value="text" />
Optional visibilityChanges the element visibility
Example:
<visibility="visible" />
Optional visual"Determines the visual state of the component and its children."
Example:
<View visualState="success" />
Optional widthAdjust component width
Example:
<width={100} />
Accepted values for text, background, and border colorization.
See below for an example using some of the properties:
Example: