@syncfusion/ej2-schedule
Version:
Flexible scheduling library with more built-in features and enhanced customization options similar to outlook and google calendar, allowing the users to plan and manage their appointments with efficient data-binding support.
46 lines (45 loc) • 1.94 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
define(["require", "exports", "@syncfusion/ej2-base/helpers/e2e"], function (require, exports, e2e_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var ScheduleHelper = (function (_super) {
__extends(ScheduleHelper, _super);
function ScheduleHelper(id, wrapperFn) {
var _this = _super.call(this) || this;
_this.id = id;
if (wrapperFn !== undefined) {
_this.wrapperFn = wrapperFn;
}
return _this;
}
ScheduleHelper.prototype.getElement = function () {
return this.selector('#' + this.id);
};
ScheduleHelper.prototype.getEventWindow = function () {
return this.selector('#' + this.id + '_dialog_wrapper');
};
ScheduleHelper.prototype.getAlertDialog = function () {
return this.selector('#' + this.id + 'QuickDialog');
};
ScheduleHelper.prototype.getQuickPopup = function () {
return this.selector('#' + this.id + ' .e-quick-popup-wrapper');
};
ScheduleHelper.prototype.getMorePopup = function () {
return this.selector('#' + this.id + ' .e-more-popup-wrapper');
};
return ScheduleHelper;
}(e2e_1.TestHelper));
exports.ScheduleHelper = ScheduleHelper;
});