-
-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
questionFurther information is requestedFurther information is requested
Description
Are these props available also in UXP-spectrum components?
<input
type="number"
value={this.state.maxItemsFocus ? this.state.maxItemsTempValue : maximumItems}
onChange={e => this.setMaxItems(e.currentTarget.value)}
required={true}
minLength={1}
maxLength={5}
min={3}
max={99999}
onBlur={e => {
this.setMaxItems(maximumItems.toString(), false);
this.props.onSetMaximumItems(e.currentTarget.value);
}}
onFocus={() => this.setMaxItems(maximumItems.toString(), true)}
/>
Also for type="number" can value also the type of "number"?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested