Added min, max, step helper attribute functions.
This commit is contained in:
parent
ca957f1703
commit
644241b486
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user