Skip to content

Description

Field.CountryCode is a wrapper component for the autocomplete component, with options built in for selecting a country code.

Demos

Empty

<Field.CountryCode
onFocus={(value) => console.log('onFocus', value)}
onBlur={(value) => console.log('onBlur', value)}
onChange={(value) => console.log('onChange', value)}
/>

Placeholder

<Field.CountryCode
placeholder="Code?"
onChange={(value) => console.log('onChange', value)}
/>

Label

<Field.CountryCode
label="Label text"
onChange={(value) => console.log('onChange', value)}
/>

Option selected

<Field.CountryCode
value="+47"
onChange={(value) => console.log('onChange', value)}
/>

Label and option selected

<Field.CountryCode
value="+46"
label="Label text"
onChange={(value) => console.log('onChange', value)}
/>

With help

<Field.CountryCode
value="+45"
label="Label text"
help={{
title: 'Help is available',
contents:
'Helping others, encouraging others, are often acts of being kind that have more meaning that you may realize.',
}}
onChange={(value) => console.log('onChange', value)}
/>

Horizontal layout

<Field.CountryCode
layout="horizontal"
value="+45"
label="Label text"
onChange={(value) => console.log('onChange', value)}
/>

Widths

<Field.CountryCode
value="+45"
label="Default width (prop omitted"
onChange={(value) => console.log('onChange', value)}
/>
<Field.CountryCode
value="+45"
label="Small"
width="small"
onChange={(value) => console.log('onChange', value)}
/>
<Field.CountryCode
value="+45"
label="Medium"
width="medium"
onChange={(value) => console.log('onChange', value)}
/>
<Field.CountryCode
value="+45"
label="Large"
width="large"
onChange={(value) => console.log('onChange', value)}
/>
<Field.CountryCode
value="+45"
label="Stretch"
width="stretch"
onChange={(value) => console.log('onChange', value)}
/>

Disabled

<Field.CountryCode
value="+44"
label="Label text"
onChange={(value) => console.log('onChange', value)}
disabled
/>

Error

This is what is wrong...
<Field.CountryCode
value="+43"
label="Label text"
onChange={(value) => console.log('onChange', value)}
error={new FormError('This is what is wrong...')}
/>

Validation - Required

<Field.CountryCode
label="Label text"
onChange={(value) => console.log('onChange', value)}
required
validateInitially
validateUnchanged
/>

Properties

Standard input component props

PropertyTypeDescription
data-testidstring(optional) Test ID
classNamestring(optional) Outer DOM element class name
valuenumber | string(optional) Source data value for the input
layoutstring(optional) Layout for the label and input. Can be horizontal or vertical
labelstring(optional) Field label to show above / before the input feature
labelDescriptionstring(optional) A more discreet text displayed beside the label (i.e for "(optional)")
labelSecondarystring(optional) Secondary information displayed at the end of the label line (i.e character counter)
placeholderstring(optional) Text showing in place of the value if no value is given
pathstring(optional) JSON Pointer for where the data for this input is located in the source dataset (when using DataContext)
infoError or string(optional) Info message shown below / after the input
warningError or string(optional) Warning message shown below / after the input
errorError(optional) Error message shown below / after the input
disabledboolean(optional) Set true to show the field but without the possibility of changing the value.
emptyValueany(optional) The value to use (in onChange events etc) when emptying the field. Makes it possible for instance to provide undefined instead of an empty string when clearing the content of a text input.
requiredboolean(optional) When set true, the input will give an error if the value cannot be empty.
schemaobject(optional) Custom JSON Schema for validating the value.
validateInitiallystring(optional) Set true to show validation based errors initially (from given value-prop or source data) before the user interacts with the field.
validateUnchangedstring(optional) Set true to show validation based errors when the field is touched (like focusing a field and blurring) without having changed the value. Since the user did not introduce a new error, this will apply when the value was initially invalid based on validation.
continuousValidationstring(optional) Set true to show validation based errors continuously while writing, not just when blurring the field.
errorMessagesobject(optional) Custom error messages for each type of error, overriding default messages.
validatorfunction(optional) Custom validator function that will be called for every change done by the user. Can be asynchronous or synchronous.
onBlurValidatorfunction(optional) Custom validator function that will be called when the user leaves the field (blurring a text input, closing a dropdown etc). Can be asynchronous or synchronous.
toInputfunction(optional) Derivate called when the received / active value is sent to the input. Can be used for casting, changing syntax etc.
fromInputfunction(optional) Derivate called when changes is made by the user, to cast or change syntax back to the original (opposite of toInput).

Component-specific props

PropertyTypeDescription
variantstring(optional) Choice of UI feature. Can be: dropdown, radio or button.
optionsLayoutstring(optional) Layout for the list of options. Can be horizontal or vertical
widthstring or false(optional)small, medium or large for predefined standard widths, stretch for fill available width.
helpobject(optional) Provide a help button. Object consisting of title and contents
clearboolean(optional) True to have a clear-option to remove selected option as value
childrenReact.Node(optional) For providing Option components

Component-specific props

PropertyTypeDescription
helpobject(optional) Provide a help button. Object consisting of title and contents

Events

EventDescription
onChange(optional) Will be called on value changes made by the user, with the new value as argument.
onFocus(optional) Will be called when the component gets into focus. Like clicking inside a text input or opening a dropdown. Called with active value as argument.
onBlur(optional) Will be called when the component stop being in focus. Like when going to next field, or closing a dropdown. Called with active value as argument.