1. Components
  2. Range

Components

Range

NOTE

the property attributes.type by default is a text and you can change it to password | email | number | range | tel

Example
const fields: IField[] = [
	{
		type: 'input', // required
		name: 'name-field-range', // required
		value: 0,
		attributes: {
			type: 'range', // required
			id: 'id-field-range', // required
			classes: ['form-control'], // optional
			label: 'Label field range', // optional
			min: 0, // required
			max: 100, // required
			step: 10 // required
		}
	}
];
Result