devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
52 lines (47 loc) • 1.8 kB
JavaScript
/**
* DevExtreme (cjs/__internal/scheduler/appointments/rendering_strategies/m_strategy_week.js)
* Version: 23.2.6
* Build date: Wed May 01 2024
*
* Copyright (c) 2012 - 2024 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 _m_strategy_vertical = _interopRequireDefault(require("./m_strategy_vertical"));
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
}
}
function _inheritsLoose(subClass, superClass) {
subClass.prototype = Object.create(superClass.prototype);
subClass.prototype.constructor = subClass;
_setPrototypeOf(subClass, superClass)
}
function _setPrototypeOf(o, p) {
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(o, p) {
o.__proto__ = p;
return o
};
return _setPrototypeOf(o, p)
}
let WeekAppointmentRenderingStrategy = function(_VerticalRenderingStr) {
_inheritsLoose(WeekAppointmentRenderingStrategy, _VerticalRenderingStr);
function WeekAppointmentRenderingStrategy() {
return _VerticalRenderingStr.apply(this, arguments) || this
}
var _proto = WeekAppointmentRenderingStrategy.prototype;
_proto.isApplyCompactAppointmentOffset = function() {
if (this.isAdaptive && 0 === this._getMaxAppointmentCountPerCellByType()) {
return false
}
return this.supportCompactDropDownAppointments()
};
return WeekAppointmentRenderingStrategy
}(_m_strategy_vertical.default);
var _default = WeekAppointmentRenderingStrategy;
exports.default = _default;