fit-ui 2.18.2 → 2.18.3

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": "2.18.2",
3
+ "version": "2.18.3",
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
@@ -3098,9 +3098,9 @@ declare namespace Fit
3098
3098
  /**
3099
3099
  * Get picker control used to add items to drop down control.
3100
3100
  * @function GetPicker
3101
- * @returns Fit.Controls.PickerBase
3101
+ * @returns Fit.Controls.PickerBase | null
3102
3102
  */
3103
- public GetPicker():Fit.Controls.PickerBase;
3103
+ public GetPicker():Fit.Controls.PickerBase | null;
3104
3104
  /**
3105
3105
  * Get selected item by value - returns object with Title (string), Value (string), and Valid (boolean) properties if found, otherwise Null is returned.
3106
3106
  * @function GetSelectionByValue
@@ -7268,9 +7268,9 @@ declare namespace Fit
7268
7268
  /**
7269
7269
  * Get picker control used to add items to drop down control.
7270
7270
  * @function GetPicker
7271
- * @returns Fit.Controls.PickerBase
7271
+ * @returns Fit.Controls.PickerBase | null
7272
7272
  */
7273
- public GetPicker():Fit.Controls.PickerBase;
7273
+ public GetPicker():Fit.Controls.PickerBase | null;
7274
7274
  /**
7275
7275
  * Get selected item by value - returns object with Title (string), Value (string), and Valid (boolean) properties if found, otherwise Null is returned.
7276
7276
  * @function GetSelectionByValue