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/dist/Documentation.html +1 -1
- package/dist/Fit.UI.js +2 -2
- package/dist/Fit.UI.min.js +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +4 -4
package/package.json
CHANGED
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
|