Updated style docs to include the use of an array of ignite properties.

This commit is contained in:
MattMo 2023-11-01 08:12:13 -07:00
parent 7e1e2b96ff
commit ab7209f5bf

View File

@ -808,7 +808,7 @@ class IgniteTemplate {
/**
* Adds a CSS property to this template with a value and priority.
* @param {String} name The name of the CSS property to set.
* @param {String|IgniteProperty} value The value to set for the property. If an IgniteProperty is used it will auto update this style.
* @param {String|IgniteProperty|IgniteProperty[]} value The value to set for the property. If an IgniteProperty is used it will auto update this style.
* @param {String} priority If set to "important" then the style will be marked with !important. Acceptable values: important, !important, true, false, null
* @param {Function} converter Optional function to convert the value if needed.
* @returns {IgniteTemplate} This ignite template so function calls can be chained.