fit-ui 2.19.2 → 2.20.0
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 +146 -34
- package/dist/Fit.UI.min.js +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +7 -0
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -2031,6 +2031,13 @@ declare namespace Fit
|
|
|
2031
2031
|
{
|
|
2032
2032
|
// Functions defined by Fit.Controls.DatePicker
|
|
2033
2033
|
/**
|
|
2034
|
+
* Get/set calendar start date - this date is used when control has no value.
|
|
2035
|
+
* @function CalendarStartDate
|
|
2036
|
+
* @param {Date | null} [val=undefined] - If defined, provided date will serve as start date for calendar view.
|
|
2037
|
+
* @returns Date | null
|
|
2038
|
+
*/
|
|
2039
|
+
public CalendarStartDate(val?:__fitUiAliasDate | null):__fitUiAliasDate | null;
|
|
2040
|
+
/**
|
|
2034
2041
|
* Get/set control value.
|
|
2035
2042
|
The function works the same as the Value function, expect it
|
|
2036
2043
|
accepts and returns a Date object instead of a string.
|