UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

23 lines (22 loc) 740 B
/** * DevExtreme (esm/ui/scheduler/utils.js) * Version: 21.1.4 * Build date: Mon Jun 21 2021 * * Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import $ from "../../core/renderer"; import { APPOINTMENT_SETTINGS_KEY } from "./constants"; var utils = { dataAccessors: { getAppointmentSettings: element => $(element).data(APPOINTMENT_SETTINGS_KEY), getAppointmentInfo: element => { var settings = utils.dataAccessors.getAppointmentSettings(element); return null === settings || void 0 === settings ? void 0 : settings.info } } }; export default utils;