devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
60 lines (58 loc) • 1.84 kB
JavaScript
/**
* DevExtreme (cjs/__internal/ui/calendar/calendar.single.selection.strategy.js)
* Version: 25.1.5
* Build date: Wed Sep 03 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _calendarSelection = _interopRequireDefault(require("./calendar.selection.strategy"));
function _interopRequireDefault(e) {
return e && e.__esModule ? e : {
default: e
}
}
class CalendarSingleSelectionStrategy extends _calendarSelection.default {
constructor(component) {
super(component);
this.NAME = "SingleSelection"
}
dateOption(optionName) {
if ("value" === optionName) {
return this.calendar._getDateOption("value")
}
return this.calendar._getDateOption(optionName)
}
getViewOptions() {
const value = this.dateOption("value") ?? void 0;
return {
value: value,
range: [],
selectionMode: "single"
}
}
selectValue(selectedValue, e) {
this.skipNavigate();
this.dateValue(selectedValue, e)
}
updateAriaSelected(val, previousVal) {
const value = val ?? [this.dateOption("value")];
const previousValue = previousVal ?? [];
super.updateAriaSelected(value, previousValue)
}
getDefaultCurrentDate() {
return this.dateOption("value")
}
restoreValue() {
this.calendar.option("value", null)
}
_updateViewsValue(value) {
this._updateViewsOption("value", value[0])
}
}
var _default = exports.default = CalendarSingleSelectionStrategy;