Added min, max, step helper attribute functions.

This commit is contained in:
Matt Mo 2021-11-24 23:23:10 -08:00
parent ca957f1703
commit 644241b486

View File

@ -914,6 +914,36 @@ class IgniteTemplate {
return this.attribute("type", value, converter);
}
/**
* Sets the min attribute of the element to be constructed by this template.
* @param {String|IgniteProperty} value The value to set for the type attribute of the element this template will construct.
* @param {Function} converter An optional function that can convert the value if needed.
* @returns This ignite template so function calls can be chained.
*/
min(value, converter = null) {
return this.attribute("min", value, converter);
}
/**
* Sets the max attribute of the element to be constructed by this template.
* @param {String|IgniteProperty} value The value to set for the type attribute of the element this template will construct.
* @param {Function} converter An optional function that can convert the value if needed.
* @returns This ignite template so function calls can be chained.
*/
max(value, converter = null) {
return this.attribute("max", value, converter);
}
/**
* Sets the step attribute of the element to be constructed by this template.
* @param {String|IgniteProperty} value The value to set for the type attribute of the element this template will construct.
* @param {Function} converter An optional function that can convert the value if needed.
* @returns This ignite template so function calls can be chained.
*/
step(value, converter = null) {
return this.attribute("step", value, converter);
}
/**
* Sets a data attribute on the element to be constructed by this template.
* @param {String} name The name of the data attribute to set on the element this template will construct.