fit-ui 3.2.0 → 3.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fit-ui",
3
- "version": "3.2.0",
3
+ "version": "3.2.2",
4
4
  "title": "Fit.UI",
5
5
  "description": "Object Oriented framework for building rich User Interfaces",
6
6
  "main": "dist/Fit.UI.js",
package/types/index.d.ts CHANGED
@@ -1456,6 +1456,13 @@ declare namespace Fit
1456
1456
  * @param {string} [ctlId=undefined] - Unique control ID that can be used to access control using Fit.Controls.Find(..).
1457
1457
  */
1458
1458
  constructor(ctlId?:string);
1459
+ /**
1460
+ * Get/set value indicating whether control should show HEX color code (default) or not.
1461
+ * @function ShowValue
1462
+ * @param {boolean} [val=undefined] - If defined, True shows label with HEX color code, False hides it.
1463
+ * @returns boolean
1464
+ */
1465
+ public ShowValue(val?:boolean):boolean;
1459
1466
  // Functions defined by Fit.Controls.ControlBase
1460
1467
  /**
1461
1468
  * Add CSS class to DOMElement representing control.