fit-ui 3.2.15 → 3.3.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": "3.2.15",
3
+ "version": "3.3.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
@@ -2320,6 +2320,14 @@ declare namespace Fit
2320
2320
  {
2321
2321
  // Functions defined by Fit.Controls.DatePicker
2322
2322
  /**
2323
+ * Get/set anchor date to/from which a range to the selected date is visualized on desktop devices.
2324
+ Notice that this feature requires modern browsers like Chrome/Edge 105+, Safari 15.4+, Firefox 121+, Opera 91+.
2325
+ * @function AnchorDate
2326
+ * @param {Date | null} [val=undefined] - If defined, provided date will serve as anchor date for calendar view.
2327
+ * @returns Date | null
2328
+ */
2329
+ public AnchorDate(val?:__fitUiAliasDate | null):__fitUiAliasDate | null;
2330
+ /**
2323
2331
  * Get/set calendar start date - this date is used when control has no value.
2324
2332
  * @function CalendarStartDate
2325
2333
  * @param {Date | null} [val=undefined] - If defined, provided date will serve as start date for calendar view.