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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fit-ui",
3
- "version": "2.19.2",
3
+ "version": "2.20.0",
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
@@ -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.