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/dist/Documentation.html +1 -1
- package/dist/Fit.UI.css +75 -0
- package/dist/Fit.UI.js +72 -3
- package/dist/Fit.UI.min.css +1 -1
- package/dist/Fit.UI.min.js +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +8 -0
package/package.json
CHANGED
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.
|