From 644241b486f0db27c3ce95175ff1f1f0ed2e8bcb Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Wed, 24 Nov 2021 23:23:10 -0800 Subject: [PATCH] Added min, max, step helper attribute functions. --- ignite-template.js | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/ignite-template.js b/ignite-template.js index ad5c22c..9e2b49a 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -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.