From a94b6a22853dba3468ef115a3e2ddecd3d9f42fd Mon Sep 17 00:00:00 2001 From: jnunez Date: Thu, 23 Aug 2018 19:03:16 +0000 Subject: [PATCH] git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C434 --- AYA.SlnSynor/AYA.SlnSynor.WCF/ISinort.cs | 3 + AYA.SlnSynor/AYA.SlnSynor.WCF/Sinort.svc.cs | 25 +- .../AYA.SlnSynor/AYA.SlnSinort.csproj | 2 +- .../Scripts/fullcalendar/fullcalendar.js | 1714 ++++++++--------- .../Scripts/fullcalendar/fullcalendar.min.js | 2 +- .../AYA.SlnSynor/Sinort-Scripts/Aplicacion.js | 4 +- .../AYA.SlnSynor/Sinort-Scripts/Contenido.js | 37 + .../Sinort-Scripts/DocumentoTecnico.js | 39 + .../AYA.SlnSynor/Sinort-Scripts/EmisorPN.js | 4 +- .../Sinort-Scripts/GrupoTematico.js | 37 + .../AYA.SlnSynor/Sinort-Scripts/Login.js | 7 + .../Sinort-Scripts/PalabraClave.js | 37 + .../DetallePropuestaNormativa.js | 174 +- .../AYA.SlnSynor/Sinort-Scripts/Rol.js | 2 +- .../Views/Catalogos/Contenido.cshtml | 6 +- .../Views/Catalogos/DocumentoTecnico.cshtml | 6 +- .../Views/Catalogos/GrupoTematico.cshtml | 6 +- .../DetallePropuesta.cshtml | 90 +- .../AYA.SlnSynor/Views/Shared/_Layout.cshtml | 2 +- .../dist/img/GotaEstadisticas.png | Bin 42052 -> 0 bytes .../dist/img/GotaEstadisticas1.png | Bin 0 -> 41782 bytes .../Sinort/DocumentosAdjuntosDAL.cs | 35 + 22 files changed, 1288 insertions(+), 944 deletions(-) delete mode 100644 AYA.SlnSynor/AYA.SlnSynor/dist/img/GotaEstadisticas.png create mode 100644 AYA.SlnSynor/AYA.SlnSynor/dist/img/GotaEstadisticas1.png diff --git a/AYA.SlnSynor/AYA.SlnSynor.WCF/ISinort.cs b/AYA.SlnSynor/AYA.SlnSynor.WCF/ISinort.cs index e2af2b76e..dcb608be3 100644 --- a/AYA.SlnSynor/AYA.SlnSynor.WCF/ISinort.cs +++ b/AYA.SlnSynor/AYA.SlnSynor.WCF/ISinort.cs @@ -84,6 +84,9 @@ namespace AYA.SlnSinort.WCF [OperationContract] AdjuntosJSON RemoverAdjunto(AdjuntosJSON model); + [OperationContract] + AdjuntosJSON EliminarbaseAdjunto(AdjuntosJSON model); + [OperationContract] AdjuntosJSON GuardarAdjuntos(AdjuntosJSON model); diff --git a/AYA.SlnSynor/AYA.SlnSynor.WCF/Sinort.svc.cs b/AYA.SlnSynor/AYA.SlnSynor.WCF/Sinort.svc.cs index e5eceab48..e43e63cec 100644 --- a/AYA.SlnSynor/AYA.SlnSynor.WCF/Sinort.svc.cs +++ b/AYA.SlnSynor/AYA.SlnSynor.WCF/Sinort.svc.cs @@ -901,8 +901,7 @@ namespace AYA.SlnSinort.WCF public AdjuntosJSON RemoverAdjunto(AdjuntosJSON model) { - string Serverpath = HttpContext.Current.Server.MapPath("DocumentosSINORT"); - Serverpath += "\\" + model.Carpeta; + string Serverpath = model.Carpeta; try { string file; @@ -913,8 +912,10 @@ namespace AYA.SlnSinort.WCF if (File.Exists(fileDirectory)) { File.Delete(fileDirectory); + model.CodigoRespuesta = EnumTipoCodigoRespuesta.EXITOSO; } - model.CodigoRespuesta = EnumTipoCodigoRespuesta.EXITOSO; + + } catch (Exception ex) @@ -925,6 +926,24 @@ namespace AYA.SlnSinort.WCF return model; } + public AdjuntosJSON EliminarbaseAdjunto(AdjuntosJSON model) + { + var DocumentosAdjuntosDAL = new DocumentosAdjuntosDAL(); + try + { + + DocumentosAdjuntosDAL.EliminarbaseAdjunto(model); + + model.CodigoRespuesta = EnumTipoCodigoRespuesta.EXITOSO; + } + catch (Exception ex) + { + model.CodigoRespuesta = EnumTipoCodigoRespuesta.ERROR; + throw; + } + + return model; + } public List ObtenerAdjuntos(AdjuntosJSON model) diff --git a/AYA.SlnSynor/AYA.SlnSynor/AYA.SlnSinort.csproj b/AYA.SlnSynor/AYA.SlnSynor/AYA.SlnSinort.csproj index c71e15641..462d66346 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/AYA.SlnSinort.csproj +++ b/AYA.SlnSynor/AYA.SlnSynor/AYA.SlnSinort.csproj @@ -6302,7 +6302,7 @@ - + diff --git a/AYA.SlnSynor/AYA.SlnSynor/Scripts/fullcalendar/fullcalendar.js b/AYA.SlnSynor/AYA.SlnSynor/Scripts/fullcalendar/fullcalendar.js index 22ef94a3b..daeb78576 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Scripts/fullcalendar/fullcalendar.js +++ b/AYA.SlnSynor/AYA.SlnSynor/Scripts/fullcalendar/fullcalendar.js @@ -1,98 +1,98 @@ -/*! - * FullCalendar v3.9.0 - * Docs & License: https://fullcalendar.io/ - * (c) 2018 Adam Shaw - */ -(function webpackUniversalModuleDefinition(root, factory) { - if(typeof exports === 'object' && typeof module === 'object') - module.exports = factory(require("moment"), require("jquery")); - else if(typeof define === 'function' && define.amd) - define(["moment", "jquery"], factory); - else if(typeof exports === 'object') - exports["FullCalendar"] = factory(require("moment"), require("jquery")); - else - root["FullCalendar"] = factory(root["moment"], root["jQuery"]); -})(typeof self !== 'undefined' ? self : this, function(__WEBPACK_EXTERNAL_MODULE_0__, __WEBPACK_EXTERNAL_MODULE_3__) { -return /******/ (function(modules) { // webpackBootstrap -/******/ // The module cache -/******/ var installedModules = {}; -/******/ -/******/ // The require function -/******/ function __webpack_require__(moduleId) { -/******/ -/******/ // Check if module is in cache -/******/ if(installedModules[moduleId]) { -/******/ return installedModules[moduleId].exports; -/******/ } -/******/ // Create a new module (and put it into the cache) -/******/ var module = installedModules[moduleId] = { -/******/ i: moduleId, -/******/ l: false, -/******/ exports: {} -/******/ }; -/******/ -/******/ // Execute the module function -/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); -/******/ -/******/ // Flag the module as loaded -/******/ module.l = true; -/******/ -/******/ // Return the exports of the module -/******/ return module.exports; -/******/ } -/******/ -/******/ -/******/ // expose the modules object (__webpack_modules__) -/******/ __webpack_require__.m = modules; -/******/ -/******/ // expose the module cache -/******/ __webpack_require__.c = installedModules; -/******/ -/******/ // define getter function for harmony exports -/******/ __webpack_require__.d = function(exports, name, getter) { -/******/ if(!__webpack_require__.o(exports, name)) { -/******/ Object.defineProperty(exports, name, { -/******/ configurable: false, -/******/ enumerable: true, -/******/ get: getter -/******/ }); -/******/ } -/******/ }; -/******/ -/******/ // getDefaultExport function for compatibility with non-harmony modules -/******/ __webpack_require__.n = function(module) { -/******/ var getter = module && module.__esModule ? -/******/ function getDefault() { return module['default']; } : -/******/ function getModuleExports() { return module; }; -/******/ __webpack_require__.d(getter, 'a', getter); -/******/ return getter; -/******/ }; -/******/ -/******/ // Object.prototype.hasOwnProperty.call -/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; -/******/ -/******/ // __webpack_public_path__ -/******/ __webpack_require__.p = ""; -/******/ -/******/ // Load entry module and return exports -/******/ return __webpack_require__(__webpack_require__.s = 236); -/******/ }) -/************************************************************************/ -/******/ ([ -/* 0 */ -/***/ (function(module, exports) { - -module.exports = __WEBPACK_EXTERNAL_MODULE_0__; - -/***/ }), -/* 1 */, -/* 2 */ -/***/ (function(module, exports) { - +/*! + * FullCalendar v3.9.0 + * Docs & License: https://fullcalendar.io/ + * (c) 2018 Adam Shaw + */ +(function webpackUniversalModuleDefinition(root, factory) { + if(typeof exports === 'object' && typeof module === 'object') + module.exports = factory(require("moment"), require("jquery")); + else if(typeof define === 'function' && define.amd) + define(["moment", "jquery"], factory); + else if(typeof exports === 'object') + exports["FullCalendar"] = factory(require("moment"), require("jquery")); + else + root["FullCalendar"] = factory(root["moment"], root["jQuery"]); +})(typeof self !== 'undefined' ? self : this, function(__WEBPACK_EXTERNAL_MODULE_0__, __WEBPACK_EXTERNAL_MODULE_3__) { +return /******/ (function(modules) { // webpackBootstrap +/******/ // The module cache +/******/ var installedModules = {}; +/******/ +/******/ // The require function +/******/ function __webpack_require__(moduleId) { +/******/ +/******/ // Check if module is in cache +/******/ if(installedModules[moduleId]) { +/******/ return installedModules[moduleId].exports; +/******/ } +/******/ // Create a new module (and put it into the cache) +/******/ var module = installedModules[moduleId] = { +/******/ i: moduleId, +/******/ l: false, +/******/ exports: {} +/******/ }; +/******/ +/******/ // Execute the module function +/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); +/******/ +/******/ // Flag the module as loaded +/******/ module.l = true; +/******/ +/******/ // Return the exports of the module +/******/ return module.exports; +/******/ } +/******/ +/******/ +/******/ // expose the modules object (__webpack_modules__) +/******/ __webpack_require__.m = modules; +/******/ +/******/ // expose the module cache +/******/ __webpack_require__.c = installedModules; +/******/ +/******/ // define getter function for harmony exports +/******/ __webpack_require__.d = function(exports, name, getter) { +/******/ if(!__webpack_require__.o(exports, name)) { +/******/ Object.defineProperty(exports, name, { +/******/ configurable: false, +/******/ enumerable: true, +/******/ get: getter +/******/ }); +/******/ } +/******/ }; +/******/ +/******/ // getDefaultExport function for compatibility with non-harmony modules +/******/ __webpack_require__.n = function(module) { +/******/ var getter = module && module.__esModule ? +/******/ function getDefault() { return module['default']; } : +/******/ function getModuleExports() { return module; }; +/******/ __webpack_require__.d(getter, 'a', getter); +/******/ return getter; +/******/ }; +/******/ +/******/ // Object.prototype.hasOwnProperty.call +/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; +/******/ +/******/ // __webpack_public_path__ +/******/ __webpack_require__.p = ""; +/******/ +/******/ // Load entry module and return exports +/******/ return __webpack_require__(__webpack_require__.s = 236); +/******/ }) +/************************************************************************/ +/******/ ([ +/* 0 */ +/***/ (function(module, exports) { + +module.exports = __WEBPACK_EXTERNAL_MODULE_0__; + +/***/ }), +/* 1 */, +/* 2 */ +/***/ (function(module, exports) { + /* derived from: https://github.com/Microsoft/tslib/blob/v1.6.0/tslib.js - + only include the helpers we need, to keep down filesize */ var extendStatics = Object.setPrototypeOf || @@ -105,18 +105,18 @@ exports.__extends = function (d, b) { function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; - - -/***/ }), -/* 3 */ -/***/ (function(module, exports) { - -module.exports = __WEBPACK_EXTERNAL_MODULE_3__; - -/***/ }), -/* 4 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 3 */ +/***/ (function(module, exports) { + +module.exports = __WEBPACK_EXTERNAL_MODULE_3__; + +/***/ }), +/* 4 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var moment = __webpack_require__(0); var $ = __webpack_require__(3); @@ -899,12 +899,12 @@ function debounce(func, wait, immediate) { }; } exports.debounce = debounce; - - -/***/ }), -/* 5 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 5 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var moment = __webpack_require__(0); var moment_ext_1 = __webpack_require__(10); @@ -1049,12 +1049,12 @@ Only works for non-open-ended ranges. function compareUnzonedRanges(range1, range2) { return range1.startMs - range2.startMs; // earlier ranges go first } - - -/***/ }), -/* 6 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 6 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -1168,16 +1168,16 @@ EventSource.defineStandardProps({ allDayDefault: true, eventDataTransform: true }); - - -/***/ }), -/* 7 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 7 */ +/***/ (function(module, exports, __webpack_require__) { + /* Utility methods for easily listening to events on another object, and more importantly, easily unlistening from them. - + USAGE: import { default as ListenerMixin, ListenerInterface } from './ListenerMixin' in class: @@ -1242,14 +1242,14 @@ var ListenerMixin = /** @class */ (function (_super) { return ListenerMixin; }(Mixin_1.default)); exports.default = ListenerMixin; - - -/***/ }), -/* 8 */, -/* 9 */, -/* 10 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 8 */, +/* 9 */, +/* 10 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var moment = __webpack_require__(0); var $ = __webpack_require__(3); @@ -1489,12 +1489,12 @@ newMomentProto.utcOffset = function (tzo) { } return oldMomentProto.utcOffset.apply(this, arguments); }; - - -/***/ }), -/* 11 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 11 */ +/***/ (function(module, exports, __webpack_require__) { + /* USAGE: import { default as EmitterMixin, EmitterInterface } from './EmitterMixin' @@ -1570,12 +1570,12 @@ var EmitterMixin = /** @class */ (function (_super) { return EmitterMixin; }(Mixin_1.default)); exports.default = EmitterMixin; - - -/***/ }), -/* 12 */ -/***/ (function(module, exports) { - + + +/***/ }), +/* 12 */ +/***/ (function(module, exports) { + Object.defineProperty(exports, "__esModule", { value: true }); /* Meant to be immutable @@ -1598,12 +1598,12 @@ var ComponentFootprint = /** @class */ (function () { return ComponentFootprint; }()); exports.default = ComponentFootprint; - - -/***/ }), -/* 13 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 13 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var EventDef_1 = __webpack_require__(34); @@ -1666,12 +1666,12 @@ SingleEventDef.defineStandardProps({ end: false, allDay: false }); - - -/***/ }), -/* 14 */ -/***/ (function(module, exports) { - + + +/***/ }), +/* 14 */ +/***/ (function(module, exports) { + Object.defineProperty(exports, "__esModule", { value: true }); var Mixin = /** @class */ (function () { function Mixin() { @@ -1697,12 +1697,12 @@ var Mixin = /** @class */ (function () { return Mixin; }()); exports.default = Mixin; - - -/***/ }), -/* 15 */ -/***/ (function(module, exports) { - + + +/***/ }), +/* 15 */ +/***/ (function(module, exports) { + Object.defineProperty(exports, "__esModule", { value: true }); var Interaction = /** @class */ (function () { function Interaction(component) { @@ -1718,12 +1718,12 @@ var Interaction = /** @class */ (function () { return Interaction; }()); exports.default = Interaction; - - -/***/ }), -/* 16 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 16 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); exports.version = '3.9.0'; // When introducing internal API incompatibilities (where fullcalendar plugins would break), @@ -1862,12 +1862,12 @@ var MonthView_1 = __webpack_require__(229); exports.MonthView = MonthView_1.default; var ListView_1 = __webpack_require__(230); exports.ListView = ListView_1.default; - - -/***/ }), -/* 17 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 17 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var UnzonedRange_1 = __webpack_require__(5); /* @@ -1950,12 +1950,12 @@ var EventDateProfile = /** @class */ (function () { return EventDateProfile; }()); exports.default = EventDateProfile; - - -/***/ }), -/* 18 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 18 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var UnzonedRange_1 = __webpack_require__(5); var util_1 = __webpack_require__(35); @@ -2016,12 +2016,12 @@ var EventInstanceGroup = /** @class */ (function () { return EventInstanceGroup; }()); exports.default = EventInstanceGroup; - - -/***/ }), -/* 19 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 19 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var $ = __webpack_require__(3); var Theme = /** @class */ (function () { @@ -2082,12 +2082,12 @@ Theme.prototype.classes = {}; Theme.prototype.iconClasses = {}; Theme.prototype.baseIconClass = ''; Theme.prototype.iconOverridePrefix = ''; - - -/***/ }), -/* 20 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 20 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var $ = __webpack_require__(3); var PromiseStub = { @@ -2135,12 +2135,12 @@ function attachImmediatelyRejectingThen(promise) { return promise; }; } - - -/***/ }), -/* 21 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 21 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var $ = __webpack_require__(3); var exportHooks = __webpack_require__(16); @@ -2153,7 +2153,7 @@ var neededCount = 0; Listens to document and window-level user-interaction events, like touch events and mouse events, and fires these events as-is to whoever is observing a GlobalEmitter. Best when used as a singleton via GlobalEmitter.get() - + Normalizes mouse/touch events. For examples: - ignores the the simulated mouse events that happen after a quick tap: mousemove+mousedown+mouseup+click - compensates for various buggy scenarios where a touchend does not fire @@ -2306,12 +2306,12 @@ var GlobalEmitter = /** @class */ (function () { exports.default = GlobalEmitter; ListenerMixin_1.default.mixInto(GlobalEmitter); EmitterMixin_1.default.mixInto(GlobalEmitter); - - -/***/ }), -/* 22 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 22 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var exportHooks = __webpack_require__(16); exports.viewHash = {}; @@ -2324,12 +2324,12 @@ function getViewConfig(viewName) { return exports.viewHash[viewName]; } exports.getViewConfig = getViewConfig; - - -/***/ }), -/* 23 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 23 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var util_1 = __webpack_require__(4); @@ -2487,19 +2487,19 @@ function isHitPropsWithin(subHit, superHit) { } return true; } - - -/***/ }), -/* 24 */, -/* 25 */, -/* 26 */, -/* 27 */, -/* 28 */, -/* 29 */, -/* 30 */, -/* 31 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 24 */, +/* 25 */, +/* 26 */, +/* 27 */, +/* 28 */, +/* 29 */, +/* 30 */, +/* 31 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var $ = __webpack_require__(3); var moment = __webpack_require__(0); @@ -2664,12 +2664,12 @@ exports.getMomentLocaleData = getMomentLocaleData; // Initialize English by forcing computation of moment-derived options. // Also, sets it as the default. locale('en', options_1.englishDefaults); - - -/***/ }), -/* 32 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 32 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var util_1 = __webpack_require__(4); exports.globalDefaults = { @@ -2778,12 +2778,12 @@ function mergeOptions(optionObjs) { return util_1.mergeProps(optionObjs, complexOptions); } exports.mergeOptions = mergeOptions; - - -/***/ }), -/* 33 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 33 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var util_1 = __webpack_require__(4); @@ -2812,12 +2812,12 @@ var Class = /** @class */ (function () { return Class; }()); exports.default = Class; - - -/***/ }), -/* 34 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 34 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var $ = __webpack_require__(3); var ParsableModelMixin_1 = __webpack_require__(208); @@ -2963,12 +2963,12 @@ EventDef.defineStandardProps({ borderColor: true, textColor: true }); - - -/***/ }), -/* 35 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 35 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var EventRange_1 = __webpack_require__(211); var EventFootprint_1 = __webpack_require__(36); @@ -3000,12 +3000,12 @@ function eventFootprintToComponentFootprint(eventFootprint) { return eventFootprint.componentFootprint; } exports.eventFootprintToComponentFootprint = eventFootprintToComponentFootprint; - - -/***/ }), -/* 36 */ -/***/ (function(module, exports) { - + + +/***/ }), +/* 36 */ +/***/ (function(module, exports) { + Object.defineProperty(exports, "__esModule", { value: true }); var EventFootprint = /** @class */ (function () { function EventFootprint(componentFootprint, eventDef, eventInstance) { @@ -3021,12 +3021,12 @@ var EventFootprint = /** @class */ (function () { return EventFootprint; }()); exports.default = EventFootprint; - - -/***/ }), -/* 37 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 37 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var util_1 = __webpack_require__(4); var EventDateProfile_1 = __webpack_require__(17); @@ -3135,12 +3135,12 @@ var EventDefMutation = /** @class */ (function () { return EventDefMutation; }()); exports.default = EventDefMutation; - - -/***/ }), -/* 38 */ -/***/ (function(module, exports) { - + + +/***/ }), +/* 38 */ +/***/ (function(module, exports) { + Object.defineProperty(exports, "__esModule", { value: true }); exports.default = { sourceClasses: [], @@ -3159,12 +3159,12 @@ exports.default = { } } }; - - -/***/ }), -/* 39 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 39 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -3247,12 +3247,12 @@ var Scroller = /** @class */ (function (_super) { return Scroller; }(Class_1.default)); exports.default = Scroller; - - -/***/ }), -/* 40 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 40 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -3502,12 +3502,12 @@ var InteractiveDateComponent = /** @class */ (function (_super) { return InteractiveDateComponent; }(DateComponent_1.default)); exports.default = InteractiveDateComponent; - - -/***/ }), -/* 41 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 41 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -4215,12 +4215,12 @@ View.watch('legacyDateProps', ['dateProfile'], function (deps) { this.intervalStart = calendar.msToMoment(dateProfile.currentUnzonedRange.startMs, dateProfile.isRangeAllDay); this.intervalEnd = calendar.msToMoment(dateProfile.currentUnzonedRange.endMs, dateProfile.isRangeAllDay); }); - - -/***/ }), -/* 42 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 42 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var $ = __webpack_require__(3); var util_1 = __webpack_require__(4); @@ -4540,16 +4540,16 @@ var EventRenderer = /** @class */ (function () { return EventRenderer; }()); exports.default = EventRenderer; - - -/***/ }), -/* 43 */, -/* 44 */, -/* 45 */, -/* 46 */, -/* 47 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 43 */, +/* 44 */, +/* 45 */, +/* 46 */, +/* 47 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var moment_ext_1 = __webpack_require__(10); // Plugin @@ -4904,12 +4904,12 @@ function queryMostGranularFormatUnit(formatStr) { return null; } exports.queryMostGranularFormatUnit = queryMostGranularFormatUnit; - - -/***/ }), -/* 48 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 48 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var Class_1 = __webpack_require__(33); @@ -5174,12 +5174,12 @@ exports.default = Model; Model.prototype._globalWatchArgs = {}; // mutation protection in Model.watch EmitterMixin_1.default.mixInto(Model); ListenerMixin_1.default.mixInto(Model); - - -/***/ }), -/* 49 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 49 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var moment = __webpack_require__(0); var util_1 = __webpack_require__(4); @@ -5196,12 +5196,12 @@ exports.default = { } } }; - - -/***/ }), -/* 50 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 50 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var util_1 = __webpack_require__(4); var EventDateProfile_1 = __webpack_require__(17); @@ -5334,12 +5334,12 @@ var EventDefDateMutation = /** @class */ (function () { return EventDefDateMutation; }()); exports.default = EventDefDateMutation; - - -/***/ }), -/* 51 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 51 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var StandardTheme_1 = __webpack_require__(213); var JqueryUiTheme_1 = __webpack_require__(214); @@ -5360,12 +5360,12 @@ function getThemeSystemClass(themeSetting) { } } exports.getThemeSystemClass = getThemeSystemClass; - - -/***/ }), -/* 52 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 52 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -5440,19 +5440,19 @@ exports.default = ArrayEventSource; ArrayEventSource.defineStandardProps({ events: false // don't automatically transfer }); - - -/***/ }), -/* 53 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 53 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var $ = __webpack_require__(3); var util_1 = __webpack_require__(4); /* A cache for the left/right/top/bottom/width/height values for one or more elements. Works with both offset (from topleft document) and position (from offsetParent). - + options: - els - isHorizontal @@ -5637,12 +5637,12 @@ var CoordCache = /** @class */ (function () { return CoordCache; }()); exports.default = CoordCache; - - -/***/ }), -/* 54 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 54 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var $ = __webpack_require__(3); var util_1 = __webpack_require__(4); @@ -6003,12 +6003,12 @@ var DragListener = /** @class */ (function () { }()); exports.default = DragListener; ListenerMixin_1.default.mixInto(DragListener); - - -/***/ }), -/* 55 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 55 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var util_1 = __webpack_require__(4); @@ -6358,12 +6358,12 @@ var DayTableMixin = /** @class */ (function (_super) { return DayTableMixin; }(Mixin_1.default)); exports.default = DayTableMixin; - - -/***/ }), -/* 56 */ -/***/ (function(module, exports) { - + + +/***/ }), +/* 56 */ +/***/ (function(module, exports) { + Object.defineProperty(exports, "__esModule", { value: true }); var BusinessHourRenderer = /** @class */ (function () { /* @@ -6410,12 +6410,12 @@ var BusinessHourRenderer = /** @class */ (function () { return BusinessHourRenderer; }()); exports.default = BusinessHourRenderer; - - -/***/ }), -/* 57 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 57 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var $ = __webpack_require__(3); var util_1 = __webpack_require__(4); @@ -6503,12 +6503,12 @@ var FillRenderer = /** @class */ (function () { return FillRenderer; }()); exports.default = FillRenderer; - - -/***/ }), -/* 58 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 58 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var SingleEventDef_1 = __webpack_require__(13); var EventFootprint_1 = __webpack_require__(36); @@ -6570,12 +6570,12 @@ var HelperRenderer = /** @class */ (function () { return HelperRenderer; }()); exports.default = HelperRenderer; - - -/***/ }), -/* 59 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 59 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var GlobalEmitter_1 = __webpack_require__(21); @@ -6646,12 +6646,12 @@ var EventPointing = /** @class */ (function (_super) { return EventPointing; }(Interaction_1.default)); exports.default = EventPointing; - - -/***/ }), -/* 60 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 60 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var Mixin_1 = __webpack_require__(14); @@ -6675,12 +6675,12 @@ StandardInteractionsMixin.prototype.eventPointingClass = EventPointing_1.default StandardInteractionsMixin.prototype.eventDraggingClass = EventDragging_1.default; StandardInteractionsMixin.prototype.eventResizingClass = EventResizing_1.default; StandardInteractionsMixin.prototype.externalDroppingClass = ExternalDropping_1.default; - - -/***/ }), -/* 61 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 61 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -7293,12 +7293,12 @@ DayGrid.prototype.helperRendererClass = DayGridHelperRenderer_1.default; DayGrid.prototype.fillRendererClass = DayGridFillRenderer_1.default; StandardInteractionsMixin_1.default.mixInto(DayGrid); DayTableMixin_1.default.mixInto(DayGrid); - - -/***/ }), -/* 62 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 62 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -7536,156 +7536,156 @@ function makeDayGridSubclass(SuperClass) { return SubClass; }(SuperClass)); } - - -/***/ }), -/* 63 */, -/* 64 */, -/* 65 */, -/* 66 */, -/* 67 */, -/* 68 */, -/* 69 */, -/* 70 */, -/* 71 */, -/* 72 */, -/* 73 */, -/* 74 */, -/* 75 */, -/* 76 */, -/* 77 */, -/* 78 */, -/* 79 */, -/* 80 */, -/* 81 */, -/* 82 */, -/* 83 */, -/* 84 */, -/* 85 */, -/* 86 */, -/* 87 */, -/* 88 */, -/* 89 */, -/* 90 */, -/* 91 */, -/* 92 */, -/* 93 */, -/* 94 */, -/* 95 */, -/* 96 */, -/* 97 */, -/* 98 */, -/* 99 */, -/* 100 */, -/* 101 */, -/* 102 */, -/* 103 */, -/* 104 */, -/* 105 */, -/* 106 */, -/* 107 */, -/* 108 */, -/* 109 */, -/* 110 */, -/* 111 */, -/* 112 */, -/* 113 */, -/* 114 */, -/* 115 */, -/* 116 */, -/* 117 */, -/* 118 */, -/* 119 */, -/* 120 */, -/* 121 */, -/* 122 */, -/* 123 */, -/* 124 */, -/* 125 */, -/* 126 */, -/* 127 */, -/* 128 */, -/* 129 */, -/* 130 */, -/* 131 */, -/* 132 */, -/* 133 */, -/* 134 */, -/* 135 */, -/* 136 */, -/* 137 */, -/* 138 */, -/* 139 */, -/* 140 */, -/* 141 */, -/* 142 */, -/* 143 */, -/* 144 */, -/* 145 */, -/* 146 */, -/* 147 */, -/* 148 */, -/* 149 */, -/* 150 */, -/* 151 */, -/* 152 */, -/* 153 */, -/* 154 */, -/* 155 */, -/* 156 */, -/* 157 */, -/* 158 */, -/* 159 */, -/* 160 */, -/* 161 */, -/* 162 */, -/* 163 */, -/* 164 */, -/* 165 */, -/* 166 */, -/* 167 */, -/* 168 */, -/* 169 */, -/* 170 */, -/* 171 */, -/* 172 */, -/* 173 */, -/* 174 */, -/* 175 */, -/* 176 */, -/* 177 */, -/* 178 */, -/* 179 */, -/* 180 */, -/* 181 */, -/* 182 */, -/* 183 */, -/* 184 */, -/* 185 */, -/* 186 */, -/* 187 */, -/* 188 */, -/* 189 */, -/* 190 */, -/* 191 */, -/* 192 */, -/* 193 */, -/* 194 */, -/* 195 */, -/* 196 */, -/* 197 */, -/* 198 */, -/* 199 */, -/* 200 */, -/* 201 */, -/* 202 */, -/* 203 */, -/* 204 */, -/* 205 */, -/* 206 */, -/* 207 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 63 */, +/* 64 */, +/* 65 */, +/* 66 */, +/* 67 */, +/* 68 */, +/* 69 */, +/* 70 */, +/* 71 */, +/* 72 */, +/* 73 */, +/* 74 */, +/* 75 */, +/* 76 */, +/* 77 */, +/* 78 */, +/* 79 */, +/* 80 */, +/* 81 */, +/* 82 */, +/* 83 */, +/* 84 */, +/* 85 */, +/* 86 */, +/* 87 */, +/* 88 */, +/* 89 */, +/* 90 */, +/* 91 */, +/* 92 */, +/* 93 */, +/* 94 */, +/* 95 */, +/* 96 */, +/* 97 */, +/* 98 */, +/* 99 */, +/* 100 */, +/* 101 */, +/* 102 */, +/* 103 */, +/* 104 */, +/* 105 */, +/* 106 */, +/* 107 */, +/* 108 */, +/* 109 */, +/* 110 */, +/* 111 */, +/* 112 */, +/* 113 */, +/* 114 */, +/* 115 */, +/* 116 */, +/* 117 */, +/* 118 */, +/* 119 */, +/* 120 */, +/* 121 */, +/* 122 */, +/* 123 */, +/* 124 */, +/* 125 */, +/* 126 */, +/* 127 */, +/* 128 */, +/* 129 */, +/* 130 */, +/* 131 */, +/* 132 */, +/* 133 */, +/* 134 */, +/* 135 */, +/* 136 */, +/* 137 */, +/* 138 */, +/* 139 */, +/* 140 */, +/* 141 */, +/* 142 */, +/* 143 */, +/* 144 */, +/* 145 */, +/* 146 */, +/* 147 */, +/* 148 */, +/* 149 */, +/* 150 */, +/* 151 */, +/* 152 */, +/* 153 */, +/* 154 */, +/* 155 */, +/* 156 */, +/* 157 */, +/* 158 */, +/* 159 */, +/* 160 */, +/* 161 */, +/* 162 */, +/* 163 */, +/* 164 */, +/* 165 */, +/* 166 */, +/* 167 */, +/* 168 */, +/* 169 */, +/* 170 */, +/* 171 */, +/* 172 */, +/* 173 */, +/* 174 */, +/* 175 */, +/* 176 */, +/* 177 */, +/* 178 */, +/* 179 */, +/* 180 */, +/* 181 */, +/* 182 */, +/* 183 */, +/* 184 */, +/* 185 */, +/* 186 */, +/* 187 */, +/* 188 */, +/* 189 */, +/* 190 */, +/* 191 */, +/* 192 */, +/* 193 */, +/* 194 */, +/* 195 */, +/* 196 */, +/* 197 */, +/* 198 */, +/* 199 */, +/* 200 */, +/* 201 */, +/* 202 */, +/* 203 */, +/* 204 */, +/* 205 */, +/* 206 */, +/* 207 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var UnzonedRange_1 = __webpack_require__(5); var ComponentFootprint_1 = __webpack_require__(12); @@ -7934,12 +7934,12 @@ function isOverlapEventInstancesAllowed(overlapEventFootprints, subjectEventInst } return true; } - - -/***/ }), -/* 208 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 208 */ +/***/ (function(module, exports, __webpack_require__) { + /* USAGE: import { default as ParsableModelMixin, ParsableModelInterface } from './ParsableModelMixin' @@ -8026,12 +8026,12 @@ var ParsableModelMixin = /** @class */ (function (_super) { }(Mixin_1.default)); exports.default = ParsableModelMixin; ParsableModelMixin.prototype.standardPropMap = {}; // will be cloned by defineStandardProps - - -/***/ }), -/* 209 */ -/***/ (function(module, exports) { - + + +/***/ }), +/* 209 */ +/***/ (function(module, exports) { + Object.defineProperty(exports, "__esModule", { value: true }); var EventInstance = /** @class */ (function () { function EventInstance(def, dateProfile) { @@ -8048,12 +8048,12 @@ var EventInstance = /** @class */ (function () { return EventInstance; }()); exports.default = EventInstance; - - -/***/ }), -/* 210 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 210 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -8147,12 +8147,12 @@ RecurringEventDef.defineStandardProps({ end: false, dow: false }); - - -/***/ }), -/* 211 */ -/***/ (function(module, exports) { - + + +/***/ }), +/* 211 */ +/***/ (function(module, exports) { + Object.defineProperty(exports, "__esModule", { value: true }); var EventRange = /** @class */ (function () { function EventRange(unzonedRange, eventDef, eventInstance) { @@ -8165,12 +8165,12 @@ var EventRange = /** @class */ (function () { return EventRange; }()); exports.default = EventRange; - - -/***/ }), -/* 212 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 212 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var $ = __webpack_require__(3); var util_1 = __webpack_require__(35); @@ -8234,12 +8234,12 @@ var BusinessHourGenerator = /** @class */ (function () { return BusinessHourGenerator; }()); exports.default = BusinessHourGenerator; - - -/***/ }), -/* 213 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 213 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var Theme_1 = __webpack_require__(19); @@ -8283,12 +8283,12 @@ StandardTheme.prototype.iconClasses = { StandardTheme.prototype.iconOverrideOption = 'buttonIcons'; StandardTheme.prototype.iconOverrideCustomButtonOption = 'icon'; StandardTheme.prototype.iconOverridePrefix = 'fc-icon-'; - - -/***/ }), -/* 214 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 214 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var Theme_1 = __webpack_require__(19); @@ -8333,12 +8333,12 @@ JqueryUiTheme.prototype.iconClasses = { JqueryUiTheme.prototype.iconOverrideOption = 'themeButtonIcons'; JqueryUiTheme.prototype.iconOverrideCustomButtonOption = 'themeIcon'; JqueryUiTheme.prototype.iconOverridePrefix = 'ui-icon-'; - - -/***/ }), -/* 215 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 215 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -8387,12 +8387,12 @@ exports.default = FuncEventSource; FuncEventSource.defineStandardProps({ events: false // don't automatically transfer }); - - -/***/ }), -/* 216 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 216 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -8512,12 +8512,12 @@ JsonFeedEventSource.defineStandardProps({ endParam: true, timezoneParam: true }); - - -/***/ }), -/* 217 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 217 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var EmitterMixin_1 = __webpack_require__(11); var TaskQueue = /** @class */ (function () { @@ -8582,12 +8582,12 @@ var TaskQueue = /** @class */ (function () { }()); exports.default = TaskQueue; EmitterMixin_1.default.mixInto(TaskQueue); - - -/***/ }), -/* 218 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 218 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var TaskQueue_1 = __webpack_require__(217); @@ -8699,12 +8699,12 @@ var RenderQueue = /** @class */ (function (_super) { return RenderQueue; }(TaskQueue_1.default)); exports.default = RenderQueue; - - -/***/ }), -/* 219 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 219 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -9274,12 +9274,12 @@ function convertEventsPayloadToLegacyArray(eventsPayload) { } return legacyEvents; } - - -/***/ }), -/* 220 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 220 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var $ = __webpack_require__(3); var moment = __webpack_require__(0); @@ -10220,12 +10220,12 @@ function filterLegacyEventInstances(legacyEventInstances, legacyQuery) { }); } } - - -/***/ }), -/* 221 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 221 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var moment = __webpack_require__(0); var util_1 = __webpack_require__(4); @@ -10486,12 +10486,12 @@ var DateProfileGenerator = /** @class */ (function () { return DateProfileGenerator; }()); exports.default = DateProfileGenerator; - - -/***/ }), -/* 222 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 222 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -10701,12 +10701,12 @@ function getDraggedElMeta(el) { stick = Boolean(stick); return { eventProps: eventProps, startTime: startTime, duration: duration, stick: stick }; } - - -/***/ }), -/* 223 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 223 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -10893,12 +10893,12 @@ var EventResizing = /** @class */ (function (_super) { return EventResizing; }(Interaction_1.default)); exports.default = EventResizing; - - -/***/ }), -/* 224 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 224 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var util_1 = __webpack_require__(4); @@ -11167,12 +11167,12 @@ var EventDragging = /** @class */ (function (_super) { return EventDragging; }(Interaction_1.default)); exports.default = EventDragging; - - -/***/ }), -/* 225 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 225 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var util_1 = __webpack_require__(4); @@ -11304,12 +11304,12 @@ var DateSelecting = /** @class */ (function (_super) { return DateSelecting; }(Interaction_1.default)); exports.default = DateSelecting; - - -/***/ }), -/* 226 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 226 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var moment = __webpack_require__(0); @@ -11634,12 +11634,12 @@ function groupEventFootprintsByAllDay(eventFootprints) { } return { allDay: allDay, timed: timed }; } - - -/***/ }), -/* 227 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 227 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -12136,12 +12136,12 @@ TimeGrid.prototype.helperRendererClass = TimeGridHelperRenderer_1.default; TimeGrid.prototype.fillRendererClass = TimeGridFillRenderer_1.default; StandardInteractionsMixin_1.default.mixInto(TimeGrid); DayTableMixin_1.default.mixInto(TimeGrid); - - -/***/ }), -/* 228 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 228 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var UnzonedRange_1 = __webpack_require__(5); @@ -12169,12 +12169,12 @@ var BasicViewDateProfileGenerator = /** @class */ (function (_super) { return BasicViewDateProfileGenerator; }(DateProfileGenerator_1.default)); exports.default = BasicViewDateProfileGenerator; - - -/***/ }), -/* 229 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 229 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var moment = __webpack_require__(0); @@ -12203,12 +12203,12 @@ var MonthView = /** @class */ (function (_super) { }(BasicView_1.default)); exports.default = MonthView; MonthView.prototype.dateProfileGeneratorClass = MonthViewDateProfileGenerator_1.default; - - -/***/ }), -/* 230 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 230 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -12364,17 +12364,17 @@ var ListView = /** @class */ (function (_super) { exports.default = ListView; ListView.prototype.eventRendererClass = ListEventRenderer_1.default; ListView.prototype.eventPointingClass = ListEventPointing_1.default; - - -/***/ }), -/* 231 */, -/* 232 */, -/* 233 */, -/* 234 */, -/* 235 */, -/* 236 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 231 */, +/* 232 */, +/* 233 */, +/* 234 */, +/* 235 */, +/* 236 */ +/***/ (function(module, exports, __webpack_require__) { + var $ = __webpack_require__(3); var exportHooks = __webpack_require__(16); var util_1 = __webpack_require__(4); @@ -12434,12 +12434,12 @@ $.fn.fullCalendar = function (options) { return res; }; module.exports = exportHooks; - - -/***/ }), -/* 237 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 237 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var Model_1 = __webpack_require__(48); @@ -12483,12 +12483,12 @@ var Component = /** @class */ (function (_super) { return Component; }(Model_1.default)); exports.default = Component; - - -/***/ }), -/* 238 */ -/***/ (function(module, exports) { - + + +/***/ }), +/* 238 */ +/***/ (function(module, exports) { + Object.defineProperty(exports, "__esModule", { value: true }); var Iterator = /** @class */ (function () { function Iterator(items) { @@ -12509,12 +12509,12 @@ var Iterator = /** @class */ (function () { return Iterator; }()); exports.default = Iterator; - - -/***/ }), -/* 239 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 239 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var $ = __webpack_require__(3); var util_1 = __webpack_require__(4); @@ -12584,7 +12584,7 @@ var Toolbar = /** @class */ (function () { var buttonEl; var buttonAriaAttr; if (buttonName === 'title') { - groupChildren = groupChildren.add($('

 

')); // we always want it to take up height + groupChildren = groupChildren.add($('

 

')); // we always want it to take up height isOnlyButtons = false; } else { @@ -12697,7 +12697,7 @@ var Toolbar = /** @class */ (function () { }; Toolbar.prototype.updateTitle = function (text) { if (this.el) { - this.el.find('h2').text(text); + this.el.find('h4').text(text); } }; Toolbar.prototype.activateButton = function (buttonName) { @@ -12732,12 +12732,12 @@ var Toolbar = /** @class */ (function () { return Toolbar; }()); exports.default = Toolbar; - - -/***/ }), -/* 240 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 240 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -12833,12 +12833,12 @@ var OptionsManager = /** @class */ (function (_super) { return OptionsManager; }(Model_1.default)); exports.default = OptionsManager; - - -/***/ }), -/* 241 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 241 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var moment = __webpack_require__(0); var $ = __webpack_require__(3); @@ -12987,12 +12987,12 @@ var ViewSpecManager = /** @class */ (function () { return ViewSpecManager; }()); exports.default = ViewSpecManager; - - -/***/ }), -/* 242 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 242 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var $ = __webpack_require__(3); var util_1 = __webpack_require__(4); @@ -13249,12 +13249,12 @@ ListenerMixin_1.default.mixInto(EventManager); function isSourcesEquivalent(source0, source1) { return source0.getPrimitive() === source1.getPrimitive(); } - - -/***/ }), -/* 243 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 243 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var $ = __webpack_require__(3); var util_1 = __webpack_require__(4); @@ -13496,12 +13496,12 @@ var EventPeriod = /** @class */ (function () { }()); exports.default = EventPeriod; EmitterMixin_1.default.mixInto(EventPeriod); - - -/***/ }), -/* 244 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 244 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var $ = __webpack_require__(3); var util_1 = __webpack_require__(4); @@ -13645,12 +13645,12 @@ var MouseFollower = /** @class */ (function () { }()); exports.default = MouseFollower; ListenerMixin_1.default.mixInto(MouseFollower); - - -/***/ }), -/* 245 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 245 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var HitDragListener_1 = __webpack_require__(23); @@ -13723,12 +13723,12 @@ var DateClicking = /** @class */ (function (_super) { return DateClicking; }(Interaction_1.default)); exports.default = DateClicking; - - -/***/ }), -/* 246 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 246 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var util_1 = __webpack_require__(4); @@ -14037,12 +14037,12 @@ function computeSlotSegCollisions(seg, otherSegs, results) { function isSlotSegCollision(seg1, seg2) { return seg1.bottom > seg2.top && seg1.top < seg2.bottom; } - - -/***/ }), -/* 247 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 247 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -14078,12 +14078,12 @@ var TimeGridHelperRenderer = /** @class */ (function (_super) { return TimeGridHelperRenderer; }(HelperRenderer_1.default)); exports.default = TimeGridHelperRenderer; - - -/***/ }), -/* 248 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 248 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var FillRenderer_1 = __webpack_require__(57); @@ -14114,12 +14114,12 @@ var TimeGridFillRenderer = /** @class */ (function (_super) { return TimeGridFillRenderer; }(FillRenderer_1.default)); exports.default = TimeGridFillRenderer; - - -/***/ }), -/* 249 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 249 */ +/***/ (function(module, exports, __webpack_require__) { + /* A rectangular panel that is absolutely positioned over other content ------------------------------------------------------------------------------------------------------------------------ Options: @@ -14261,12 +14261,12 @@ var Popover = /** @class */ (function () { }()); exports.default = Popover; ListenerMixin_1.default.mixInto(Popover); - - -/***/ }), -/* 250 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 250 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -14514,12 +14514,12 @@ function isDaySegCollision(seg, otherSegs) { function compareDaySegCols(a, b) { return a.leftCol - b.leftCol; } - - -/***/ }), -/* 251 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 251 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -14563,12 +14563,12 @@ var DayGridHelperRenderer = /** @class */ (function (_super) { return DayGridHelperRenderer; }(HelperRenderer_1.default)); exports.default = DayGridHelperRenderer; - - -/***/ }), -/* 252 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 252 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -14624,12 +14624,12 @@ var DayGridFillRenderer = /** @class */ (function (_super) { return DayGridFillRenderer; }(FillRenderer_1.default)); exports.default = DayGridFillRenderer; - - -/***/ }), -/* 253 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 253 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var BasicViewDateProfileGenerator_1 = __webpack_require__(228); @@ -14657,12 +14657,12 @@ var MonthViewDateProfileGenerator = /** @class */ (function (_super) { return MonthViewDateProfileGenerator; }(BasicViewDateProfileGenerator_1.default)); exports.default = MonthViewDateProfileGenerator; - - -/***/ }), -/* 254 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 254 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var util_1 = __webpack_require__(4); @@ -14737,12 +14737,12 @@ var ListEventRenderer = /** @class */ (function (_super) { return ListEventRenderer; }(EventRenderer_1.default)); exports.default = ListEventRenderer; - - -/***/ }), -/* 255 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 255 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var $ = __webpack_require__(3); @@ -14768,12 +14768,12 @@ var ListEventPointing = /** @class */ (function (_super) { return ListEventPointing; }(EventPointing_1.default)); exports.default = ListEventPointing; - - -/***/ }), -/* 256 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 256 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var EventSourceParser_1 = __webpack_require__(38); var ArrayEventSource_1 = __webpack_require__(52); @@ -14782,12 +14782,12 @@ var JsonFeedEventSource_1 = __webpack_require__(216); EventSourceParser_1.default.registerClass(ArrayEventSource_1.default); EventSourceParser_1.default.registerClass(FuncEventSource_1.default); EventSourceParser_1.default.registerClass(JsonFeedEventSource_1.default); - - -/***/ }), -/* 257 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 257 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var ThemeRegistry_1 = __webpack_require__(51); var StandardTheme_1 = __webpack_require__(213); @@ -14798,12 +14798,12 @@ ThemeRegistry_1.defineThemeSystem('standard', StandardTheme_1.default); ThemeRegistry_1.defineThemeSystem('jquery-ui', JqueryUiTheme_1.default); ThemeRegistry_1.defineThemeSystem('bootstrap3', Bootstrap3Theme_1.default); ThemeRegistry_1.defineThemeSystem('bootstrap4', Bootstrap4Theme_1.default); - - -/***/ }), -/* 258 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 258 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var Theme_1 = __webpack_require__(19); @@ -14847,12 +14847,12 @@ Bootstrap3Theme.prototype.iconClasses = { Bootstrap3Theme.prototype.iconOverrideOption = 'bootstrapGlyphicons'; Bootstrap3Theme.prototype.iconOverrideCustomButtonOption = 'bootstrapGlyphicon'; Bootstrap3Theme.prototype.iconOverridePrefix = 'glyphicon-'; - - -/***/ }), -/* 259 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 259 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(2); var Theme_1 = __webpack_require__(19); @@ -14896,12 +14896,12 @@ Bootstrap4Theme.prototype.iconClasses = { Bootstrap4Theme.prototype.iconOverrideOption = 'bootstrapFontAwesome'; Bootstrap4Theme.prototype.iconOverrideCustomButtonOption = 'bootstrapFontAwesome'; Bootstrap4Theme.prototype.iconOverridePrefix = 'fa-'; - - -/***/ }), -/* 260 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 260 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var ViewRegistry_1 = __webpack_require__(22); var BasicView_1 = __webpack_require__(62); @@ -14924,12 +14924,12 @@ ViewRegistry_1.defineView('month', { fixedWeekCount: true } }); - - -/***/ }), -/* 261 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 261 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var ViewRegistry_1 = __webpack_require__(22); var AgendaView_1 = __webpack_require__(226); @@ -14949,12 +14949,12 @@ ViewRegistry_1.defineView('agendaWeek', { type: 'agenda', duration: { weeks: 1 } }); - - -/***/ }), -/* 262 */ -/***/ (function(module, exports, __webpack_require__) { - + + +/***/ }), +/* 262 */ +/***/ (function(module, exports, __webpack_require__) { + Object.defineProperty(exports, "__esModule", { value: true }); var ViewRegistry_1 = __webpack_require__(22); var ListView_1 = __webpack_require__(230); @@ -14996,15 +14996,15 @@ ViewRegistry_1.defineView('listYear', { listDayAltFormat: 'dddd' // day-of-week is nice-to-have } }); - - -/***/ }), -/* 263 */ -/***/ (function(module, exports) { - + + +/***/ }), +/* 263 */ +/***/ (function(module, exports) { + Object.defineProperty(exports, "__esModule", { value: true }); - - -/***/ }) -/******/ ]); + + +/***/ }) +/******/ ]); }); \ No newline at end of file diff --git a/AYA.SlnSynor/AYA.SlnSynor/Scripts/fullcalendar/fullcalendar.min.js b/AYA.SlnSynor/AYA.SlnSynor/Scripts/fullcalendar/fullcalendar.min.js index 88045457d..7aac81c6a 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Scripts/fullcalendar/fullcalendar.min.js +++ b/AYA.SlnSynor/AYA.SlnSynor/Scripts/fullcalendar/fullcalendar.min.js @@ -8,5 +8,5 @@ mediumTimeFormat:function(t){return t.longDateFormat("LT").replace(/\s*a$/i,"a") ;return a.startMs-l.startMs||l.endMs-l.startMs-(a.endMs-a.startMs)||s.isAllDay-o.isAllDay||r.compareByFieldSpecs(n.eventDef,i.eventDef,this.view.eventOrderSpecs,n.eventDef.miscProps,i.eventDef.miscProps)},t}();e.default=o},,,,,function(t,e,n){function i(t){return"en"!==t.locale()?t.clone().locale("en"):t}function r(t,e){return h(a(e).fakeFormatString,t)}function o(t,e,n,i,r){var o;return t=y.default.parseZone(t),e=y.default.parseZone(e),o=t.localeData(),n=o.longDateFormat(n)||n,s(a(n),t,e,i||" - ",r)}function s(t,e,n,i,r){var o,s,a,l=t.sameUnits,u=e.clone().stripZone(),d=n.clone().stripZone(),c=f(t.fakeFormatString,e),p=f(t.fakeFormatString,n),h="",v="",y="",m="",b="";for(o=0;oo&&(!l[s]||u.isSame(d,l[s]))&&(s-1!==o||"."!==c[s]);s--)v=c[s]+v;for(a=o;a<=s;a++)y+=c[a],m+=p[a];return(y||m)&&(b=r?m+i+y:y+i+m),g(h+b+v)}function a(t){return C[t]||(C[t]=l(t))}function l(t){var e=u(t);return{fakeFormatString:c(e),sameUnits:p(e)}}function u(t){for(var e,n=[],i=/\[([^\]]*)\]|\(([^\)]*)\)|(LTS|LT|(\w)\4*o?)|([^\w\[\(]+)/g;e=i.exec(t);)e[1]?n.push.apply(n,d(e[1])):e[2]?n.push({maybe:u(e[2])}):e[3]?n.push({token:e[3]}):e[5]&&n.push.apply(n,d(e[5]));return n}function d(t){return". "===t?["."," "]:[t]}function c(t){var e,n,i=[];for(e=0;er.value)&&(r=i);return r?r.unit:null}Object.defineProperty(e,"__esModule",{value:!0});var y=n(10);y.newMomentProto.format=function(){return this._fullCalendar&&arguments[0]?r(this,arguments[0]):this._ambigTime?y.oldMomentFormat(i(this),"YYYY-MM-DD"):this._ambigZone?y.oldMomentFormat(i(this),"YYYY-MM-DD[T]HH:mm:ss"):this._fullCalendar?y.oldMomentFormat(i(this)):y.oldMomentProto.format.apply(this,arguments)},y.newMomentProto.toISOString=function(){return this._ambigTime?y.oldMomentFormat(i(this),"YYYY-MM-DD"):this._ambigZone?y.oldMomentFormat(i(this),"YYYY-MM-DD[T]HH:mm:ss"):this._fullCalendar?y.oldMomentProto.toISOString.apply(i(this),arguments):y.oldMomentProto.toISOString.apply(this,arguments)};var m="\v",b="",w="",D=new RegExp(w+"([^"+w+"]*)"+w,"g"),E={t:function(t){return y.oldMomentFormat(t,"a").charAt(0)},T:function(t){return y.oldMomentFormat(t,"A").charAt(0)}},S={Y:{value:1,unit:"year"},M:{value:2,unit:"month"},W:{value:3,unit:"week"},w:{value:3,unit:"week"},D:{value:4,unit:"day"},d:{value:4,unit:"day"}};e.formatDate=r,e.formatRange=o;var C={};e.queryMostGranularFormatUnit=v},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(33),o=n(11),s=n(7),a=function(t){function e(){var e=t.call(this)||this;return e._watchers={},e._props={},e.applyGlobalWatchers(),e.constructed(),e}return i.__extends(e,t),e.watch=function(t){for(var e=[],n=1;n0&&(t=this.els.eq(0).offsetParent()),this.origin=t?t.offset():null,this.boundingRect=this.queryBoundingRect(),this.isHorizontal&&this.buildElHorizontals(),this.isVertical&&this.buildElVerticals()},t.prototype.clear=function(){this.origin=null,this.boundingRect=null,this.lefts=null,this.rights=null,this.tops=null,this.bottoms=null},t.prototype.ensureBuilt=function(){this.origin||this.build()},t.prototype.buildElHorizontals=function(){var t=[],e=[];this.els.each(function(n,r){var o=i(r),s=o.offset().left,a=o.outerWidth();t.push(s),e.push(s+a)}),this.lefts=t,this.rights=e},t.prototype.buildElVerticals=function(){var t=[],e=[];this.els.each(function(n,r){var o=i(r),s=o.offset().top,a=o.outerHeight();t.push(s),e.push(s+a)}),this.tops=t,this.bottoms=e},t.prototype.getHorizontalIndex=function(t){this.ensureBuilt();var e,n=this.lefts,i=this.rights,r=n.length;for(e=0;e=n[e]&&t=n[e]&&t0&&(t=r.getScrollParent(this.els.eq(0)),!t.is(document))?r.getClientRect(t):null},t.prototype.isPointInBounds=function(t,e){return this.isLeftInBounds(t)&&this.isTopInBounds(e)},t.prototype.isLeftInBounds=function(t){return!this.boundingRect||t>=this.boundingRect.left&&t=this.boundingRect.top&&t=i*i&&this.handleDistanceSurpassed(t),this.isDragging&&this.handleDrag(e,n,t)},t.prototype.handleDrag=function(t,e,n){this.trigger("drag",t,e,n),this.updateAutoScroll(n)},t.prototype.endDrag=function(t){this.isDragging&&(this.isDragging=!1,this.handleDragEnd(t))},t.prototype.handleDragEnd=function(t){this.trigger("dragEnd",t)},t.prototype.startDelay=function(t){var e=this;this.delay?this.delayTimeoutId=setTimeout(function(){e.handleDelayEnd(t)},this.delay):this.handleDelayEnd(t)},t.prototype.handleDelayEnd=function(t){this.isDelayEnded=!0,this.isDistanceSurpassed&&this.startDrag(t)},t.prototype.handleDistanceSurpassed=function(t){this.isDistanceSurpassed=!0,this.isDelayEnded&&this.startDrag(t)},t.prototype.handleTouchMove=function(t){this.isDragging&&this.shouldCancelTouchScroll&&t.preventDefault(),this.handleMove(t)},t.prototype.handleMouseMove=function(t){this.handleMove(t)},t.prototype.handleTouchScroll=function(t){this.isDragging&&!this.scrollAlwaysKills||this.endInteraction(t,!0)},t.prototype.trigger=function(t){for(var e=[],n=1;n=0&&e<=1?l=e*this.scrollSpeed*-1:n>=0&&n<=1&&(l=n*this.scrollSpeed),i>=0&&i<=1?u=i*this.scrollSpeed*-1:o>=0&&o<=1&&(u=o*this.scrollSpeed)),this.setScrollVel(l,u)},t.prototype.setScrollVel=function(t,e){this.scrollTopVel=t,this.scrollLeftVel=e,this.constrainScrollVel(),!this.scrollTopVel&&!this.scrollLeftVel||this.scrollIntervalId||(this.scrollIntervalId=setInterval(r.proxy(this,"scrollIntervalFunc"),this.scrollIntervalMs))},t.prototype.constrainScrollVel=function(){var t=this.scrollEl;this.scrollTopVel<0?t.scrollTop()<=0&&(this.scrollTopVel=0):this.scrollTopVel>0&&t.scrollTop()+t[0].clientHeight>=t[0].scrollHeight&&(this.scrollTopVel=0),this.scrollLeftVel<0?t.scrollLeft()<=0&&(this.scrollLeftVel=0):this.scrollLeftVel>0&&t.scrollLeft()+t[0].clientWidth>=t[0].scrollWidth&&(this.scrollLeftVel=0)},t.prototype.scrollIntervalFunc=function(){var t=this.scrollEl,e=this.scrollIntervalMs/1e3;this.scrollTopVel&&t.scrollTop(t.scrollTop()+this.scrollTopVel*e),this.scrollLeftVel&&t.scrollLeft(t.scrollLeft()+this.scrollLeftVel*e),this.constrainScrollVel(),this.scrollTopVel||this.scrollLeftVel||this.endAutoScroll()},t.prototype.endAutoScroll=function(){this.scrollIntervalId&&(clearInterval(this.scrollIntervalId),this.scrollIntervalId=null,this.handleScrollEnd())},t.prototype.handleDebouncedScroll=function(){this.scrollIntervalId||this.handleScrollEnd()},t.prototype.handleScrollEnd=function(){},t}();e.default=a,o.default.mixInto(a)},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(4),o=n(14),s=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.updateDayTable=function(){for(var t,e,n,i=this,r=i.view,o=r.calendar,s=o.msToUtcMoment(i.dateProfile.renderUnzonedRange.startMs,!0),a=o.msToUtcMoment(i.dateProfile.renderUnzonedRange.endMs,!0),l=-1,u=[],d=[];s.isBefore(a);)r.isHiddenDay(s)?u.push(l+.5):(l++,u.push(l),d.push(s.clone())),s.add(1,"days");if(this.breakOnWeeks){for(e=d[0].day(),t=1;t=e.length?e[e.length-1]+1:e[n]},e.prototype.computeColHeadFormat=function(){return this.rowCnt>1||this.colCnt>10?"ddd":this.colCnt>1?this.opt("dayOfMonthFormat"):"dddd"},e.prototype.sliceRangeByRow=function(t){var e,n,i,r,o,s=this.daysPerRow,a=this.view.computeDayRange(t),l=this.getDateDayIndex(a.start),u=this.getDateDayIndex(a.end.clone().subtract(1,"days")),d=[];for(e=0;e'+this.renderHeadTrHtml()+"
"},e.prototype.renderHeadIntroHtml=function(){return this.renderIntroHtml()},e.prototype.renderHeadTrHtml=function(){return""+(this.isRTL?"":this.renderHeadIntroHtml())+this.renderHeadDateCellsHtml()+(this.isRTL?this.renderHeadIntroHtml():"")+""},e.prototype.renderHeadDateCellsHtml=function(){var t,e,n=[];for(t=0;t1?' colspan="'+e+'"':"")+(n?" "+n:"")+">"+(a?s.buildGotoAnchorHtml({date:t,forceOff:o.rowCnt>1||1===o.colCnt},i):i)+""},e.prototype.renderBgTrHtml=function(t){return""+(this.isRTL?"":this.renderBgIntroHtml(t))+this.renderBgCellsHtml(t)+(this.isRTL?this.renderBgIntroHtml(t):"")+""},e.prototype.renderBgIntroHtml=function(t){return this.renderIntroHtml()},e.prototype.renderBgCellsHtml=function(t){var e,n,i=[];for(e=0;e"},e.prototype.renderIntroHtml=function(){},e.prototype.bookendCells=function(t){var e=this.renderIntroHtml();e&&(this.isRTL?t.append(e):t.prepend(e))},e}(o.default);e.default=s},function(t,e){Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function t(t,e){this.component=t,this.fillRenderer=e}return t.prototype.render=function(t){var e=this.component,n=e._getDateProfile().activeUnzonedRange,i=t.buildEventInstanceGroup(e.hasAllDayBusinessHours,n),r=i?e.eventRangesToEventFootprints(i.sliceRenderRanges(n)):[];this.renderEventFootprints(r)},t.prototype.renderEventFootprints=function(t){var e=this.component.eventFootprintsToSegs(t);this.renderSegs(e),this.segs=e},t.prototype.renderSegs=function(t){this.fillRenderer&&this.fillRenderer.renderSegs("businessHours",t,{getClasses:function(t){return["fc-nonbusiness","fc-bgevent"]}})},t.prototype.unrender=function(){this.fillRenderer&&this.fillRenderer.unrender("businessHours"),this.segs=null},t.prototype.getSegs=function(){return this.segs||[]},t}();e.default=n},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(3),r=n(4),o=function(){function t(t){this.fillSegTag="div",this.component=t,this.elsByFill={}}return t.prototype.renderFootprint=function(t,e,n){this.renderSegs(t,this.component.componentFootprintToSegs(e),n)},t.prototype.renderSegs=function(t,e,n){var i;return e=this.buildSegEls(t,e,n),i=this.attachSegEls(t,e),i&&this.reportEls(t,i),e},t.prototype.unrender=function(t){var e=this.elsByFill[t];e&&(e.remove(),delete this.elsByFill[t])},t.prototype.buildSegEls=function(t,e,n){var r,o=this,s="",a=[];if(e.length){for(r=0;r"},t.prototype.attachSegEls=function(t,e){},t.prototype.reportEls=function(t,e){this.elsByFill[t]?this.elsByFill[t]=this.elsByFill[t].add(e):this.elsByFill[t]=i(e)},t}();e.default=o},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(13),r=n(36),o=n(6),s=function(){function t(t,e){this.view=t._getView(),this.component=t,this.eventRenderer=e}return t.prototype.renderComponentFootprint=function(t){this.renderEventFootprints([this.fabricateEventFootprint(t)])},t.prototype.renderEventDraggingFootprints=function(t,e,n){this.renderEventFootprints(t,e,"fc-dragging",n?null:this.view.opt("dragOpacity"))},t.prototype.renderEventResizingFootprints=function(t,e,n){this.renderEventFootprints(t,e,"fc-resizing")},t.prototype.renderEventFootprints=function(t,e,n,i){var r,o=this.component.eventFootprintsToSegs(t),s="fc-helper "+(n||"");for(o=this.eventRenderer.renderFgSegEls(o),r=0;r
'+this.renderBgTrHtml(t)+'
'+(this.getIsNumbersVisible()?""+this.renderNumberTrHtml(t)+"":"")+"
"},e.prototype.getIsNumbersVisible=function(){return this.getIsDayNumbersVisible()||this.cellWeekNumbersVisible},e.prototype.getIsDayNumbersVisible=function(){return this.rowCnt>1},e.prototype.renderNumberTrHtml=function(t){return""+(this.isRTL?"":this.renderNumberIntroHtml(t))+this.renderNumberCellsHtml(t)+(this.isRTL?this.renderNumberIntroHtml(t):"")+""},e.prototype.renderNumberIntroHtml=function(t){return this.renderIntroHtml()},e.prototype.renderNumberCellsHtml=function(t){var e,n,i=[];for(e=0;e",this.cellWeekNumbersVisible&&t.day()===n&&(r+=i.buildGotoAnchorHtml({date:t,type:"week"},{class:"fc-week-number"},t.format("w"))),s&&(r+=i.buildGotoAnchorHtml(t,{class:"fc-day-number"},t.format("D"))),r+=""):""},e.prototype.prepareHits=function(){this.colCoordCache.build(),this.rowCoordCache.build(),this.rowCoordCache.bottoms[this.rowCnt-1]+=this.bottomCoordPadding},e.prototype.releaseHits=function(){this.colCoordCache.clear(),this.rowCoordCache.clear()},e.prototype.queryHit=function(t,e){if(this.colCoordCache.isLeftInBounds(t)&&this.rowCoordCache.isTopInBounds(e)){var n=this.colCoordCache.getHorizontalIndex(t),i=this.rowCoordCache.getVerticalIndex(e);if(null!=i&&null!=n)return this.getCellHit(i,n)}},e.prototype.getHitFootprint=function(t){var e=this.getCellRange(t.row,t.col);return new u.default(new l.default(e.start,e.end),!0)},e.prototype.getHitEl=function(t){return this.getCellEl(t.row,t.col)},e.prototype.getCellHit=function(t,e){return{row:t,col:e,component:this,left:this.colCoordCache.getLeftOffset(e),right:this.colCoordCache.getRightOffset(e),top:this.rowCoordCache.getTopOffset(t),bottom:this.rowCoordCache.getBottomOffset(t)}},e.prototype.getCellEl=function(t,e){return this.cellEls.eq(t*this.colCnt+e)},e.prototype.executeEventUnrender=function(){this.removeSegPopover(),t.prototype.executeEventUnrender.call(this)},e.prototype.getOwnEventSegs=function(){ return t.prototype.getOwnEventSegs.call(this).concat(this.popoverSegs||[])},e.prototype.renderDrag=function(t,e,n){var i;for(i=0;i td > :first-child").each(e),i.position().top+o>a)return n;return!1},e.prototype.limitRow=function(t,e){var n,i,o,s,a,l,u,d,c,p,h,f,g,v,y,m=this,b=this.eventRenderer.rowStructs[t],w=[],D=0,E=function(n){for(;D").append(y),c.append(v),w.push(v[0])),D++};if(e&&e').attr("rowspan",p),l=d[f],y=this.renderMoreLink(t,a.leftCol+f,[a].concat(l)),v=r("
").append(y),g.append(v),h.push(g[0]),w.push(g[0]);c.addClass("fc-limited").after(r(h)),o.push(c[0])}}E(this.colCnt),b.moreEls=r(w),b.limitedEls=r(o)}},e.prototype.unlimitRow=function(t){var e=this.eventRenderer.rowStructs[t];e.moreEls&&(e.moreEls.remove(),e.moreEls=null),e.limitedEls&&(e.limitedEls.removeClass("fc-limited"),e.limitedEls=null)},e.prototype.renderMoreLink=function(t,e,n){var i=this,o=this.view;return r('').text(this.getMoreLinkText(n.length)).on("click",function(s){var a=i.opt("eventLimitClick"),l=i.getCellDate(t,e),u=r(s.currentTarget),d=i.getCellEl(t,e),c=i.getCellSegs(t,e),p=i.resliceDaySegs(c,l),h=i.resliceDaySegs(n,l);"function"==typeof a&&(a=i.publiclyTrigger("eventLimitClick",{context:o,args:[{date:l.clone(),dayEl:d,moreEl:u,segs:p,hiddenSegs:h},s,o]})),"popover"===a?i.showSegPopover(t,e,u,p):"string"==typeof a&&o.calendar.zoomTo(l,a)})},e.prototype.showSegPopover=function(t,e,n,i){var r,o,s=this,l=this.view,u=n.parent();r=1===this.rowCnt?l.el:this.rowEls.eq(t),o={className:"fc-more-popover "+l.calendar.theme.getClass("popover"),content:this.renderSegPopoverContent(t,e,i),parentEl:l.el,top:r.offset().top,autoHide:!0,viewportConstrain:this.opt("popoverViewportConstrain"),hide:function(){s.popoverSegs&&s.triggerBeforeEventSegsDestroyed(s.popoverSegs),s.segPopover.removeElement(),s.segPopover=null,s.popoverSegs=null}},this.isRTL?o.right=u.offset().left+u.outerWidth()+1:o.left=u.offset().left-1,this.segPopover=new a.default(o),this.segPopover.show(),this.bindAllSegHandlersToEl(this.segPopover.el),this.triggerAfterEventSegsRendered(i)},e.prototype.renderSegPopoverContent=function(t,e,n){var i,s=this.view,a=s.calendar.theme,l=this.getCellDate(t,e).format(this.opt("dayPopoverFormat")),u=r('
'+o.htmlEscape(l)+'
'),d=u.find(".fc-event-container");for(n=this.eventRenderer.renderFgSegEls(n,!0),this.popoverSegs=n,i=0;i"+s.htmlEscape(this.opt("weekNumberTitle"))+"":""},e.prototype.renderNumberIntroHtml=function(t){var e=this.view,n=this.getCellDate(t,0);return this.colWeekNumbersVisible?'"+e.buildGotoAnchorHtml({date:n,type:"week",forceOff:1===this.colCnt},n.format("w"))+"":""},e.prototype.renderBgIntroHtml=function(){var t=this.view;return this.colWeekNumbersVisible?'":""},e.prototype.renderIntroHtml=function(){var t=this.view;return this.colWeekNumbersVisible?'":""},e.prototype.getIsNumbersVisible=function(){return d.default.prototype.getIsNumbersVisible.apply(this,arguments)||this.colWeekNumbersVisible},e}(t)}Object.defineProperty(e,"__esModule",{value:!0});var r=n(2),o=n(3),s=n(4),a=n(39),l=n(41),u=n(228),d=n(61),c=function(t){function e(e,n){var i=t.call(this,e,n)||this;return i.dayGrid=i.instantiateDayGrid(),i.dayGrid.isRigid=i.hasRigidRows(),i.opt("weekNumbers")&&(i.opt("weekNumbersWithinDays")?(i.dayGrid.cellWeekNumbersVisible=!0,i.dayGrid.colWeekNumbersVisible=!1):(i.dayGrid.cellWeekNumbersVisible=!1,i.dayGrid.colWeekNumbersVisible=!0)),i.addChild(i.dayGrid),i.scroller=new a.default({overflowX:"hidden",overflowY:"auto"}),i}return r.__extends(e,t),e.prototype.instantiateDayGrid=function(){return new(i(this.dayGridClass))(this)},e.prototype.executeDateRender=function(e){this.dayGrid.breakOnWeeks=/year|month|week/.test(e.currentRangeUnit),t.prototype.executeDateRender.call(this,e)},e.prototype.renderSkeleton=function(){var t,e;this.el.addClass("fc-basic-view").html(this.renderSkeletonHtml()),this.scroller.render(),t=this.scroller.el.addClass("fc-day-grid-container"),e=o('
').appendTo(t),this.el.find(".fc-body > tr > td").append(t),this.dayGrid.headContainerEl=this.el.find(".fc-head-container"),this.dayGrid.setElement(e)},e.prototype.unrenderSkeleton=function(){this.dayGrid.removeElement(),this.scroller.destroy()},e.prototype.renderSkeletonHtml=function(){var t=this.calendar.theme;return''+(this.opt("columnHeader")?'':"")+'
 
'},e.prototype.weekNumberStyleAttr=function(){return null!=this.weekNumberWidth?'style="width:'+this.weekNumberWidth+'px"':""},e.prototype.hasRigidRows=function(){var t=this.opt("eventLimit");return t&&"number"!=typeof t},e.prototype.updateSize=function(e,n,i){var r,o,a=this.opt("eventLimit"),l=this.dayGrid.headContainerEl.find(".fc-row");if(!this.dayGrid.rowEls)return void(n||(r=this.computeScrollerHeight(e),this.scroller.setHeight(r)));t.prototype.updateSize.call(this,e,n,i),this.dayGrid.colWeekNumbersVisible&&(this.weekNumberWidth=s.matchCellWidths(this.el.find(".fc-week-number"))),this.scroller.clear(),s.uncompensateScroll(l),this.dayGrid.removeSegPopover(),a&&"number"==typeof a&&this.dayGrid.limitRows(a),r=this.computeScrollerHeight(e),this.setGridHeight(r,n),a&&"number"!=typeof a&&this.dayGrid.limitRows(a),n||(this.scroller.setHeight(r),o=this.scroller.getScrollbarWidths(),(o.left||o.right)&&(s.compensateScroll(l,o),r=this.computeScrollerHeight(e),this.scroller.setHeight(r)),this.scroller.lockOverflow(o))},e.prototype.computeScrollerHeight=function(t){return t-s.subtractInnerElHeight(this.el,this.scroller.el)},e.prototype.setGridHeight=function(t,e){e?s.undistributeHeight(this.dayGrid.rowEls):s.distributeHeight(this.dayGrid.rowEls,t,!0)},e.prototype.computeInitialDateScroll=function(){return{top:0}},e.prototype.queryDateScroll=function(){return{top:this.scroller.getScrollTop()}},e.prototype.applyDateScroll=function(t){void 0!==t.top&&this.scroller.setScrollTop(t.top)},e}(l.default);e.default=c,c.prototype.dateProfileGeneratorClass=u.default,c.prototype.dayGridClass=d.default},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){function i(t,e,n){var i;for(i=0;i=0;e--)switch(n=i[e],n.type){case"init":r=!1;case"add":case"remove":i.splice(e,1)}return r&&i.push(t),r},e}(r.default);e.default=o},function(t,e,n){function i(t){var e,n,i,r=[];for(e in t)for(n=t[e].eventInstances,i=0;i'+n+"
":""+n+""},e.prototype.getAllDayHtml=function(){return this.opt("allDayHtml")||a.htmlEscape(this.opt("allDayText"))},e.prototype.getDayClasses=function(t,e){var n,i=this._getView(),r=[] ;return this.dateProfile.activeUnzonedRange.containsDate(t)?(r.push("fc-"+a.dayIDs[t.day()]),i.isDateInOtherMonth(t,this.dateProfile)&&r.push("fc-other-month"),n=i.calendar.getNow(),t.isSame(n,"day")?(r.push("fc-today"),!0!==e&&r.push(i.calendar.theme.getClass("today"))):t=this.nextDayThreshold&&o.add(1,"days"),o<=n&&(o=n.clone().add(1,"days")),{start:n,end:o}},e.prototype.isMultiDayRange=function(t){var e=this.computeDayRange(t);return e.end.diff(e.start,"days")>1},e.guid=0,e}(d.default);e.default=p},function(t,e,n){function i(t,e){return null==e?t:r.isFunction(e)?t.filter(e):(e+="",t.filter(function(t){return t.id==e||t._id===e}))}Object.defineProperty(e,"__esModule",{value:!0});var r=n(3),o=n(0),s=n(4),a=n(32),l=n(238),u=n(21),d=n(11),c=n(7),p=n(239),h=n(240),f=n(241),g=n(207),v=n(31),y=n(10),m=n(5),b=n(12),w=n(17),D=n(242),E=n(212),S=n(38),C=n(49),R=n(13),T=n(37),M=n(6),I=n(51),H=function(){function t(t,e){this.loadingLevel=0,this.ignoreUpdateViewSize=0,this.freezeContentHeightDepth=0,u.default.needed(),this.el=t,this.viewsByType={},this.optionsManager=new h.default(this,e),this.viewSpecManager=new f.default(this.optionsManager,this),this.initMomentInternals(),this.initCurrentDate(),this.initEventManager(),this.constraints=new g.default(this.eventManager,this),this.constructed()}return t.prototype.constructed=function(){},t.prototype.getView=function(){return this.view},t.prototype.publiclyTrigger=function(t,e){var n,i,o=this.opt(t);if(r.isPlainObject(e)?(n=e.context,i=e.args):r.isArray(e)&&(i=e),null==n&&(n=this.el[0]),i||(i=[]),this.triggerWith(t,n,i),o)return o.apply(n,i)},t.prototype.hasPublicHandlers=function(t){return this.hasHandlers(t)||this.opt(t)},t.prototype.option=function(t,e){var n;if("string"==typeof t){if(void 0===e)return this.optionsManager.get(t);n={},n[t]=e,this.optionsManager.add(n)}else"object"==typeof t&&this.optionsManager.add(t)},t.prototype.opt=function(t){return this.optionsManager.get(t)},t.prototype.instantiateView=function(t){var e=this.viewSpecManager.getViewSpec(t);if(!e)throw new Error('View type "'+t+'" is not valid');return new e.class(this,e)},t.prototype.isValidViewType=function(t){return Boolean(this.viewSpecManager.getViewSpec(t))},t.prototype.changeView=function(t,e){e&&(e.start&&e.end?this.optionsManager.recordOverrides({visibleRange:e}):this.currentDate=this.moment(e).stripZone()),this.renderView(t)},t.prototype.zoomTo=function(t,e){var n;e=e||"day",n=this.viewSpecManager.getViewSpec(e)||this.viewSpecManager.getUnitViewSpec(e),this.currentDate=t.clone(),this.renderView(n?n.type:null)},t.prototype.initCurrentDate=function(){var t=this.opt("defaultDate");this.currentDate=null!=t?this.moment(t).stripZone():this.getNow()},t.prototype.prev=function(){var t=this.view,e=t.dateProfileGenerator.buildPrev(t.get("dateProfile"));e.isValid&&(this.currentDate=e.date,this.renderView())},t.prototype.next=function(){var t=this.view,e=t.dateProfileGenerator.buildNext(t.get("dateProfile"));e.isValid&&(this.currentDate=e.date,this.renderView())},t.prototype.prevYear=function(){this.currentDate.add(-1,"years"),this.renderView()},t.prototype.nextYear=function(){this.currentDate.add(1,"years"),this.renderView()},t.prototype.today=function(){this.currentDate=this.getNow(),this.renderView()},t.prototype.gotoDate=function(t){this.currentDate=this.moment(t).stripZone(),this.renderView()},t.prototype.incrementDate=function(t){this.currentDate.add(o.duration(t)),this.renderView()},t.prototype.getDate=function(){return this.applyTimezone(this.currentDate)},t.prototype.pushLoading=function(){this.loadingLevel++||this.publiclyTrigger("loading",[!0,this.view])},t.prototype.popLoading=function(){--this.loadingLevel||this.publiclyTrigger("loading",[!1,this.view])},t.prototype.render=function(){this.contentEl?this.elementVisible()&&(this.calcSize(),this.updateViewSize()):this.initialRender()},t.prototype.initialRender=function(){var t=this,e=this.el;e.addClass("fc"),e.on("click.fc","a[data-goto]",function(e){var n=r(e.currentTarget),i=n.data("goto"),o=t.moment(i.date),a=i.type,l=t.view.opt("navLink"+s.capitaliseFirstLetter(a)+"Click");"function"==typeof l?l(o,e):("string"==typeof l&&(a=l),t.zoomTo(o,a))}),this.optionsManager.watch("settingTheme",["?theme","?themeSystem"],function(n){var i=I.getThemeSystemClass(n.themeSystem||n.theme),r=new i(t.optionsManager),o=r.getClass("widget");t.theme=r,o&&e.addClass(o)},function(){var n=t.theme.getClass("widget");t.theme=null,n&&e.removeClass(n)}),this.optionsManager.watch("settingBusinessHourGenerator",["?businessHours"],function(e){t.businessHourGenerator=new E.default(e.businessHours,t),t.view&&t.view.set("businessHourGenerator",t.businessHourGenerator)},function(){t.businessHourGenerator=null}),this.optionsManager.watch("applyingDirClasses",["?isRTL","?locale"],function(t){e.toggleClass("fc-ltr",!t.isRTL),e.toggleClass("fc-rtl",t.isRTL)}),this.contentEl=r("
").prependTo(e),this.initToolbars(),this.renderHeader(),this.renderFooter(),this.renderView(this.opt("defaultView")),this.opt("handleWindowResize")&&r(window).resize(this.windowResizeProxy=s.debounce(this.windowResize.bind(this),this.opt("windowResizeDelay")))},t.prototype.destroy=function(){this.view&&this.clearView(),this.toolbarsManager.proxyCall("removeElement"),this.contentEl.remove(),this.el.removeClass("fc fc-ltr fc-rtl"),this.optionsManager.unwatch("settingTheme"),this.optionsManager.unwatch("settingBusinessHourGenerator"),this.el.off(".fc"),this.windowResizeProxy&&(r(window).unbind("resize",this.windowResizeProxy),this.windowResizeProxy=null),u.default.unneeded()},t.prototype.elementVisible=function(){return this.el.is(":visible")},t.prototype.bindViewHandlers=function(t){var e=this;t.watch("titleForCalendar",["title"],function(n){t===e.view&&e.setToolbarsTitle(n.title)}),t.watch("dateProfileForCalendar",["dateProfile"],function(n){t===e.view&&(e.currentDate=n.dateProfile.date,e.updateToolbarButtons(n.dateProfile))})},t.prototype.unbindViewHandlers=function(t){t.unwatch("titleForCalendar"),t.unwatch("dateProfileForCalendar")},t.prototype.renderView=function(t){var e,n=this.view;this.freezeContentHeight(),n&&t&&n.type!==t&&this.clearView(),!this.view&&t&&(e=this.view=this.viewsByType[t]||(this.viewsByType[t]=this.instantiateView(t)),this.bindViewHandlers(e),e.startBatchRender(),e.setElement(r("
").appendTo(this.contentEl)),this.toolbarsManager.proxyCall("activateButton",t)),this.view&&(this.view.get("businessHourGenerator")!==this.businessHourGenerator&&this.view.set("businessHourGenerator",this.businessHourGenerator),this.view.setDate(this.currentDate),e&&e.stopBatchRender()),this.thawContentHeight()},t.prototype.clearView=function(){var t=this.view;this.toolbarsManager.proxyCall("deactivateButton",t.type),this.unbindViewHandlers(t),t.removeElement(),t.unsetDate(),this.view=null},t.prototype.reinitView=function(){var t=this.view,e=t.queryScroll();this.freezeContentHeight(),this.clearView(),this.calcSize(),this.renderView(t.type),this.view.applyScroll(e),this.thawContentHeight()},t.prototype.getSuggestedViewHeight=function(){return null==this.suggestedViewHeight&&this.calcSize(),this.suggestedViewHeight},t.prototype.isHeightAuto=function(){return"auto"===this.opt("contentHeight")||"auto"===this.opt("height")},t.prototype.updateViewSize=function(t){void 0===t&&(t=!1);var e,n=this.view;if(!this.ignoreUpdateViewSize&&n)return t&&(this.calcSize(),e=n.queryScroll()),this.ignoreUpdateViewSize++,n.updateSize(this.getSuggestedViewHeight(),this.isHeightAuto(),t),this.ignoreUpdateViewSize--,t&&n.applyScroll(e),!0},t.prototype.calcSize=function(){this.elementVisible()&&this._calcSize()},t.prototype._calcSize=function(){var t=this.opt("contentHeight"),e=this.opt("height");this.suggestedViewHeight="number"==typeof t?t:"function"==typeof t?t():"number"==typeof e?e-this.queryToolbarsHeight():"function"==typeof e?e()-this.queryToolbarsHeight():"parent"===e?this.el.parent().height()-this.queryToolbarsHeight():Math.round(this.contentEl.width()/Math.max(this.opt("aspectRatio"),.5))},t.prototype.windowResize=function(t){t.target===window&&this.view&&this.view.isDatesRendered&&this.updateViewSize(!0)&&this.publiclyTrigger("windowResize",[this.view])},t.prototype.freezeContentHeight=function(){this.freezeContentHeightDepth++||this.forceFreezeContentHeight()},t.prototype.forceFreezeContentHeight=function(){this.contentEl.css({width:"100%",height:this.contentEl.height(),overflow:"hidden"})},t.prototype.thawContentHeight=function(){this.freezeContentHeightDepth--,this.contentEl.css({width:"",height:"",overflow:""}),this.freezeContentHeightDepth&&this.forceFreezeContentHeight()},t.prototype.initToolbars=function(){this.header=new p.default(this,this.computeHeaderOptions()),this.footer=new p.default(this,this.computeFooterOptions()),this.toolbarsManager=new l.default([this.header,this.footer])},t.prototype.computeHeaderOptions=function(){return{extraClasses:"fc-header-toolbar",layout:this.opt("header")}},t.prototype.computeFooterOptions=function(){return{extraClasses:"fc-footer-toolbar",layout:this.opt("footer")}},t.prototype.renderHeader=function(){var t=this.header;t.setToolbarOptions(this.computeHeaderOptions()),t.render(),t.el&&this.el.prepend(t.el)},t.prototype.renderFooter=function(){var t=this.footer;t.setToolbarOptions(this.computeFooterOptions()),t.render(),t.el&&this.el.append(t.el)},t.prototype.setToolbarsTitle=function(t){this.toolbarsManager.proxyCall("updateTitle",t)},t.prototype.updateToolbarButtons=function(t){var e=this.getNow(),n=this.view,i=n.dateProfileGenerator.build(e),r=n.dateProfileGenerator.buildPrev(n.get("dateProfile")),o=n.dateProfileGenerator.buildNext(n.get("dateProfile"));this.toolbarsManager.proxyCall(i.isValid&&!t.currentUnzonedRange.containsDate(e)?"enableButton":"disableButton","today"),this.toolbarsManager.proxyCall(r.isValid?"enableButton":"disableButton","prev"),this.toolbarsManager.proxyCall(o.isValid?"enableButton":"disableButton","next")},t.prototype.queryToolbarsHeight=function(){return this.toolbarsManager.items.reduce(function(t,e){return t+(e.el?e.el.outerHeight(!0):0)},0)},t.prototype.select=function(t,e){this.view.select(this.buildSelectFootprint.apply(this,arguments))},t.prototype.unselect=function(){this.view&&this.view.unselect()},t.prototype.buildSelectFootprint=function(t,e){var n,i=this.moment(t).stripZone();return n=e?this.moment(e).stripZone():i.hasTime()?i.clone().add(this.defaultTimedEventDuration):i.clone().add(this.defaultAllDayEventDuration),new b.default(new m.default(i,n),!i.hasTime())},t.prototype.initMomentInternals=function(){var t=this;this.defaultAllDayEventDuration=o.duration(this.opt("defaultAllDayEventDuration")),this.defaultTimedEventDuration=o.duration(this.opt("defaultTimedEventDuration")),this.optionsManager.watch("buildingMomentLocale",["?locale","?monthNames","?monthNamesShort","?dayNames","?dayNamesShort","?firstDay","?weekNumberCalculation"],function(e){var n,i=e.weekNumberCalculation,r=e.firstDay;"iso"===i&&(i="ISO");var o=Object.create(v.getMomentLocaleData(e.locale));e.monthNames&&(o._months=e.monthNames),e.monthNamesShort&&(o._monthsShort=e.monthNamesShort),e.dayNames&&(o._weekdays=e.dayNames),e.dayNamesShort&&(o._weekdaysShort=e.dayNamesShort),null==r&&"ISO"===i&&(r=1),null!=r&&(n=Object.create(o._week),n.dow=r,o._week=n),"ISO"!==i&&"local"!==i&&"function"!=typeof i||(o._fullCalendar_weekCalc=i),t.localeData=o,t.currentDate&&t.localizeMoment(t.currentDate)})},t.prototype.moment=function(){for(var t=[],e=0;e864e5&&r.time(n-864e5)),new o.default(i,r)},t.prototype.buildRangeFromDuration=function(t,e,n,s){function a(){d=t.clone().startOf(h),c=d.clone().add(n),p=new o.default(d,c)}var l,u,d,c,p,h=this.opt("dateAlignment");return h||(l=this.opt("dateIncrement"),l?(u=i.duration(l),h=uo.getStart()&&(i=new a.default,i.setEndDelta(l),r=new s.default,r.setDateMutation(i),r)},e}(u.default);e.default=d},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(4),o=n(37),s=n(50),a=n(54),l=n(23),u=n(244),d=n(15),c=function(t){function e(e,n){var i=t.call(this,e)||this;return i.isDragging=!1,i.eventPointing=n,i}return i.__extends(e,t),e.prototype.end=function(){this.dragListener&&this.dragListener.endInteraction()},e.prototype.getSelectionDelay=function(){var t=this.opt("eventLongPressDelay");return null==t&&(t=this.opt("longPressDelay")),t},e.prototype.bindToEl=function(t){var e=this.component;e.bindSegHandlerToEl(t,"mousedown",this.handleMousedown.bind(this)),e.bindSegHandlerToEl(t,"touchstart",this.handleTouchStart.bind(this))},e.prototype.handleMousedown=function(t,e){!this.component.shouldIgnoreMouse()&&this.component.canStartDrag(t,e)&&this.buildDragListener(t).startInteraction(e,{distance:5})},e.prototype.handleTouchStart=function(t,e){var n=this.component,i={delay:this.view.isEventDefSelected(t.footprint.eventDef)?0:this.getSelectionDelay()};n.canStartDrag(t,e)?this.buildDragListener(t).startInteraction(e,i):n.canStartSelection(t,e)&&this.buildSelectListener(t).startInteraction(e,i)},e.prototype.buildSelectListener=function(t){var e=this,n=this.view,i=t.footprint.eventDef,r=t.footprint.eventInstance;if(this.dragListener)return this.dragListener;var o=this.dragListener=new a.default({dragStart:function(t){o.isTouch&&!n.isEventDefSelected(i)&&r&&n.selectEventInstance(r)},interactionEnd:function(t){e.dragListener=null}});return o},e.prototype.buildDragListener=function(t){var e,n,i,o=this,s=this.component,a=this.view,d=a.calendar,c=d.eventManager,p=t.el,h=t.footprint.eventDef,f=t.footprint.eventInstance;if(this.dragListener)return this.dragListener;var g=this.dragListener=new l.default(a,{scroll:this.opt("dragScroll"),subjectEl:p,subjectCenter:!0,interactionStart:function(i){t.component=s,e=!1,n=new u.default(t.el,{additionalClass:"fc-dragging",parentEl:a.el,opacity:g.isTouch?null:o.opt("dragOpacity"),revertDuration:o.opt("dragRevertDuration"),zIndex:2}),n.hide(),n.start(i)},dragStart:function(n){g.isTouch&&!a.isEventDefSelected(h)&&f&&a.selectEventInstance(f),e=!0,o.eventPointing.handleMouseout(t,n),o.segDragStart(t,n),a.hideEventsWithId(t.footprint.eventDef.id)},hitOver:function(e,l,u){var p,f,v,y=!0;t.hit&&(u=t.hit),p=u.component.getSafeHitFootprint(u),f=e.component.getSafeHitFootprint(e),p&&f?(i=o.computeEventDropMutation(p,f,h),i?(v=c.buildMutatedEventInstanceGroup(h.id,i),y=s.isEventInstanceGroupAllowed(v)):y=!1):y=!1,y||(i=null,r.disableCursor()),i&&a.renderDrag(s.eventRangesToEventFootprints(v.sliceRenderRanges(s.dateProfile.renderUnzonedRange,d)),t,g.isTouch)?n.hide():n.show(),l&&(i=null)},hitOut:function(){a.unrenderDrag(t),n.show(),i=null},hitDone:function(){r.enableCursor()},interactionEnd:function(r){delete t.component,n.stop(!i,function(){e&&(a.unrenderDrag(t),o.segDragStop(t,r)),a.showEventsWithId(t.footprint.eventDef.id),i&&a.reportEventDrop(f,i,p,r)}),o.dragListener=null}});return g},e.prototype.segDragStart=function(t,e){this.isDragging=!0,this.component.publiclyTrigger("eventDragStart",{context:t.el[0],args:[t.footprint.getEventLegacy(),e,{},this.view]})},e.prototype.segDragStop=function(t,e){this.isDragging=!1,this.component.publiclyTrigger("eventDragStop",{context:t.el[0],args:[t.footprint.getEventLegacy(),e,{},this.view]})},e.prototype.computeEventDropMutation=function(t,e,n){var i=new o.default;return i.setDateMutation(this.computeEventDateMutation(t,e)),i},e.prototype.computeEventDateMutation=function(t,e){var n,i,r=t.unzonedRange.getStart(),o=e.unzonedRange.getStart(),a=!1,l=!1,u=!1;return t.isAllDay!==e.isAllDay&&(a=!0,e.isAllDay?(u=!0,r.stripTime()):l=!0),n=this.component.diffDates(o,r),i=new s.default,i.clearEnd=a,i.forceTimed=l,i.forceAllDay=u,i.setDateDelta(n),i},e}(d.default);e.default=c},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(4),o=n(23),s=n(12),a=n(5),l=n(15),u=function(t){function e(e){var n=t.call(this,e)||this;return n.dragListener=n.buildDragListener(),n}return i.__extends(e,t),e.prototype.end=function(){this.dragListener.endInteraction()},e.prototype.getDelay=function(){var t=this.opt("selectLongPressDelay");return null==t&&(t=this.opt("longPressDelay")),t},e.prototype.bindToEl=function(t){var e=this,n=this.component,i=this.dragListener;n.bindDateHandlerToEl(t,"mousedown",function(t){e.opt("selectable")&&!n.shouldIgnoreMouse()&&i.startInteraction(t,{distance:e.opt("selectMinDistance")})}),n.bindDateHandlerToEl(t,"touchstart",function(t){e.opt("selectable")&&!n.shouldIgnoreTouch()&&i.startInteraction(t,{delay:e.getDelay()})}),r.preventSelection(t)},e.prototype.buildDragListener=function(){var t,e=this,n=this.component;return new o.default(n,{scroll:this.opt("dragScroll"),interactionStart:function(){t=null},dragStart:function(t){e.view.unselect(t)},hitOver:function(i,o,s){var a,l;s&&(a=n.getSafeHitFootprint(s),l=n.getSafeHitFootprint(i),t=a&&l?e.computeSelection(a,l):null,t?n.renderSelectionFootprint(t):!1===t&&r.disableCursor())},hitOut:function(){t=null,n.unrenderSelection()},hitDone:function(){r.enableCursor()},interactionEnd:function(n,i){!i&&t&&e.view.reportSelection(t,n)}})},e.prototype.computeSelection=function(t,e){var n=this.computeSelectionFootprint(t,e);return!(n&&!this.isSelectionFootprintAllowed(n))&&n},e.prototype.computeSelectionFootprint=function(t,e){var n=[t.unzonedRange.startMs,t.unzonedRange.endMs,e.unzonedRange.startMs,e.unzonedRange.endMs];return n.sort(r.compareNumbers),new s.default(new a.default(n[0],n[3]),t.isAllDay)},e.prototype.isSelectionFootprintAllowed=function(t){return this.component.dateProfile.validUnzonedRange.containsRange(t.unzonedRange)&&this.view.calendar.constraints.isSelectionFootprintAllowed(t)},e}(l.default);e.default=u},function(t,e,n){function i(t){var e,n=[],i=[];for(e=0;e').appendTo(t),this.el.find(".fc-body > tr > td").append(t),this.timeGrid.headContainerEl=this.el.find(".fc-head-container"),this.timeGrid.setElement(e),this.dayGrid&&(this.dayGrid.setElement(this.el.find(".fc-day-grid")),this.dayGrid.bottomCoordPadding=this.dayGrid.el.next("hr").outerHeight())},e.prototype.unrenderSkeleton=function(){this.timeGrid.removeElement(),this.dayGrid&&this.dayGrid.removeElement(),this.scroller.destroy()},e.prototype.renderSkeletonHtml=function(){var t=this.calendar.theme;return''+(this.opt("columnHeader")?'':"")+'
 
'+(this.dayGrid?'

':"")+"
"},e.prototype.axisStyleAttr=function(){return null!=this.axisWidth?'style="width:'+this.axisWidth+'px"':""},e.prototype.getNowIndicatorUnit=function(){return this.timeGrid.getNowIndicatorUnit()},e.prototype.updateSize=function(e,n,i){var r,o,s;if(t.prototype.updateSize.call(this,e,n,i),this.axisWidth=u.matchCellWidths(this.el.find(".fc-axis")),!this.timeGrid.colEls)return void(n||(o=this.computeScrollerHeight(e),this.scroller.setHeight(o)));var a=this.el.find(".fc-row:not(.fc-scroller *)");this.timeGrid.bottomRuleEl.hide(),this.scroller.clear(),u.uncompensateScroll(a),this.dayGrid&&(this.dayGrid.removeSegPopover(),r=this.opt("eventLimit"),r&&"number"!=typeof r&&(r=5),r&&this.dayGrid.limitRows(r)),n||(o=this.computeScrollerHeight(e),this.scroller.setHeight(o),s=this.scroller.getScrollbarWidths(),(s.left||s.right)&&(u.compensateScroll(a,s),o=this.computeScrollerHeight(e),this.scroller.setHeight(o)),this.scroller.lockOverflow(s),this.timeGrid.getTotalSlatHeight()"+e.buildGotoAnchorHtml({date:i,type:"week",forceOff:this.colCnt>1},u.htmlEscape(t))+""):'"},renderBgIntroHtml:function(){var t=this.view;return'"},renderIntroHtml:function(){return'"}},o={renderBgIntroHtml:function(){var t=this.view;return'"+t.getAllDayHtml()+""},renderIntroHtml:function(){return'"}}},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(3),o=n(0),s=n(4),a=n(40),l=n(56),u=n(60),d=n(55),c=n(53),p=n(5),h=n(12),f=n(246),g=n(247),v=n(248),y=[{hours:1},{minutes:30},{minutes:15},{seconds:30},{seconds:15}],m=function(t){function e(e){var n=t.call(this,e)||this;return n.processOptions(),n}return i.__extends(e,t),e.prototype.componentFootprintToSegs=function(t){var e,n=this.sliceRangeByTimes(t.unzonedRange);for(e=0;e=0;e--)if(n=o.duration(y[e]),i=s.divideDurationByDuration(n,t),s.isInt(i)&&i>1)return n;return o.duration(t)},e.prototype.renderDates=function(t){this.dateProfile=t,this.updateDayTable(),this.renderSlats(),this.renderColumns()},e.prototype.unrenderDates=function(){this.unrenderColumns()},e.prototype.renderSkeleton=function(){var t=this.view.calendar.theme;this.el.html('
'),this.bottomRuleEl=this.el.find("hr")},e.prototype.renderSlats=function(){var t=this.view.calendar.theme;this.slatContainerEl=this.el.find("> .fc-slats").html(''+this.renderSlatRowHtml()+"
"),this.slatEls=this.slatContainerEl.find("tr"),this.slatCoordCache=new c.default({els:this.slatEls,isVertical:!0})},e.prototype.renderSlatRowHtml=function(){for(var t,e,n,i=this.view,r=i.calendar,a=r.theme,l=this.isRTL,u=this.dateProfile,d="",c=o.duration(+u.minTime),p=o.duration(0);c"+(e?""+s.htmlEscape(t.format(this.labelFormat))+"":"")+"",d+='"+(l?"":n)+''+(l?n:"")+"",c.add(this.slotDuration),p.add(this.slotDuration);return d},e.prototype.renderColumns=function(){var t=this.dateProfile,e=this.view.calendar.theme;this.dayRanges=this.dayDates.map(function(e){return new p.default(e.clone().add(t.minTime),e.clone().add(t.maxTime))}),this.headContainerEl&&this.headContainerEl.html(this.renderHeadHtml()),this.el.find("> .fc-bg").html(''+this.renderBgTrHtml(0)+"
"),this.colEls=this.el.find(".fc-day, .fc-disabled-day"),this.colCoordCache=new c.default({els:this.colEls,isHorizontal:!0}),this.renderContentSkeleton()},e.prototype.unrenderColumns=function(){this.unrenderContentSkeleton()},e.prototype.renderContentSkeleton=function(){var t,e,n="";for(t=0;t
';e=this.contentSkeletonEl=r('
'+n+"
"),this.colContainerEls=e.find(".fc-content-col"),this.helperContainerEls=e.find(".fc-helper-container"),this.fgContainerEls=e.find(".fc-event-container:not(.fc-helper-container)"),this.bgContainerEls=e.find(".fc-bgevent-container"),this.highlightContainerEls=e.find(".fc-highlight-container"),this.businessContainerEls=e.find(".fc-business-container"),this.bookendCells(e.find("tr")),this.el.append(e)},e.prototype.unrenderContentSkeleton=function(){this.contentSkeletonEl&&(this.contentSkeletonEl.remove(),this.contentSkeletonEl=null,this.colContainerEls=null,this.helperContainerEls=null,this.fgContainerEls=null,this.bgContainerEls=null,this.highlightContainerEls=null,this.businessContainerEls=null)},e.prototype.groupSegsByCol=function(t){var e,n=[];for(e=0;e
').css("top",i).appendTo(this.colContainerEls.eq(n[e].col))[0]);n.length>0&&o.push(r('
').css("top",i).appendTo(this.el.find(".fc-content-skeleton"))[0]),this.nowIndicatorEls=r(o)}},e.prototype.unrenderNowIndicator=function(){this.nowIndicatorEls&&(this.nowIndicatorEls.remove(),this.nowIndicatorEls=null)},e.prototype.updateSize=function(e,n,i){t.prototype.updateSize.call(this,e,n,i),this.slatCoordCache.build(),i&&this.updateSegVerticals([].concat(this.eventRenderer.getSegs(),this.businessSegs||[]))},e.prototype.getTotalSlatHeight=function(){return this.slatContainerEl.outerHeight()},e.prototype.computeDateTop=function(t,e){return this.computeTimeTop(o.duration(t-e.clone().stripTime()))},e.prototype.computeTimeTop=function(t){var e,n,i=this.slatEls.length,r=this.dateProfile,o=(t-r.minTime)/this.slotDuration;return o=Math.max(0,o),o=Math.min(i,o),e=Math.floor(o),e=Math.min(e,i-1),n=o-e,this.slatCoordCache.getTopPosition(e)+this.slatCoordCache.getHeight(e)*n},e.prototype.updateSegVerticals=function(t){this.computeSegVerticals(t),this.assignSegVerticals(t)},e.prototype.computeSegVerticals=function(t){var e,n,i,r=this.opt("agendaEventMinHeight");for(e=0;e
'+o.htmlEscape(this.opt("noEventsMessage"))+"
")},e.prototype.renderSegList=function(t){var e,n,i,o=this.groupSegsByDay(t),s=r('
'),a=s.find("tbody");for(e=0;e'+(e?this.buildGotoAnchorHtml(t,{class:"fc-list-heading-main"},o.htmlEscape(t.format(e))):"")+(n?this.buildGotoAnchorHtml(t,{class:"fc-list-heading-alt"},o.htmlEscape(t.format(n))):"")+""},e}(a.default);e.default=c,c.prototype.eventRendererClass=u.default,c.prototype.eventPointingClass=d.default},,,,,,function(t,e,n){var i=n(3),r=n(16),o=n(4),s=n(220);n(10),n(47),n(256),n(257),n(260),n(261),n(262),n(263),i.fullCalendar=r,i.fn.fullCalendar=function(t){var e=Array.prototype.slice.call(arguments,1),n=this;return this.each(function(r,a){var l,u=i(a),d=u.data("fullCalendar");"string"==typeof t?"getCalendar"===t?r||(n=d):"destroy"===t?d&&(d.destroy(),u.removeData("fullCalendar")):d?i.isFunction(d[t])?(l=d[t].apply(d,e),r||(n=l),"destroy"===t&&u.removeData("fullCalendar")):o.warn("'"+t+"' is an unknown FullCalendar method."):o.warn("Attempting to call a FullCalendar method on an element with no calendar."):d||(d=new s.default(u,t),u.data("fullCalendar",d),d.render())}),n},t.exports=r},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(48),o=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.setElement=function(t){this.el=t,this.bindGlobalHandlers(),this.renderSkeleton(),this.set("isInDom",!0)},e.prototype.removeElement=function(){this.unset("isInDom"),this.unrenderSkeleton(),this.unbindGlobalHandlers(),this.el.remove()},e.prototype.bindGlobalHandlers=function(){},e.prototype.unbindGlobalHandlers=function(){},e.prototype.renderSkeleton=function(){},e.prototype.unrenderSkeleton=function(){},e}(r.default);e.default=o},function(t,e){Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function t(t){this.items=t||[]}return t.prototype.proxyCall=function(t){for(var e=[],n=1;n"),e.append(this.renderSection("left")).append(this.renderSection("right")).append(this.renderSection("center")).append('
')):this.removeElement()},t.prototype.removeElement=function(){this.el&&(this.el.remove(),this.el=null)},t.prototype.renderSection=function(t){var e=this,n=this.calendar,o=n.theme,s=n.optionsManager,a=n.viewSpecManager,l=i('
'),u=this.toolbarOptions.layout[t],d=s.get("customButtons")||{},c=s.overrides.buttonText||{},p=s.get("buttonText")||{};return u&&i.each(u.split(" "),function(t,s){var u,h=i(),f=!0;i.each(s.split(","),function(t,s){var l,u,g,v,y,m,b,w,D;"title"===s?(h=h.add(i("

 

")),f=!1):((l=d[s])?(g=function(t){l.click&&l.click.call(w[0],t)},(v=o.getCustomButtonIconClass(l))||(v=o.getIconClass(s))||(y=l.text)):(u=a.getViewSpec(s))?(e.viewsWithButtons.push(s),g=function(){n.changeView(s)},(y=u.buttonTextOverride)||(v=o.getIconClass(s))||(y=u.buttonTextDefault)):n[s]&&(g=function(){n[s]()},(y=c[s])||(v=o.getIconClass(s))||(y=p[s])),g&&(b=["fc-"+s+"-button",o.getClass("button"),o.getClass("stateDefault")],y?(m=r.htmlEscape(y),D=""):v&&(m="",D=' aria-label="'+s+'"'),w=i('").click(function(t){w.hasClass(o.getClass("stateDisabled"))||(g(t),(w.hasClass(o.getClass("stateActive"))||w.hasClass(o.getClass("stateDisabled")))&&w.removeClass(o.getClass("stateHover")))}).mousedown(function(){w.not("."+o.getClass("stateActive")).not("."+o.getClass("stateDisabled")).addClass(o.getClass("stateDown"))}).mouseup(function(){w.removeClass(o.getClass("stateDown"))}).hover(function(){w.not("."+o.getClass("stateActive")).not("."+o.getClass("stateDisabled")).addClass(o.getClass("stateHover"))},function(){w.removeClass(o.getClass("stateHover")).removeClass(o.getClass("stateDown"))}),h=h.add(w)))}),f&&h.first().addClass(o.getClass("cornerLeft")).end().last().addClass(o.getClass("cornerRight")).end(),h.length>1?(u=i("
"),f&&u.addClass(o.getClass("buttonGroup")),u.append(h),l.append(u)):l.append(h)}),l},t.prototype.updateTitle=function(t){this.el&&this.el.find("h2").text(t)},t.prototype.activateButton=function(t){this.el&&this.el.find(".fc-"+t+"-button").addClass(this.calendar.theme.getClass("stateActive"))},t.prototype.deactivateButton=function(t){this.el&&this.el.find(".fc-"+t+"-button").removeClass(this.calendar.theme.getClass("stateActive"))},t.prototype.disableButton=function(t){this.el&&this.el.find(".fc-"+t+"-button").prop("disabled",!0).addClass(this.calendar.theme.getClass("stateDisabled"))},t.prototype.enableButton=function(t){this.el&&this.el.find(".fc-"+t+"-button").prop("disabled",!1).removeClass(this.calendar.theme.getClass("stateDisabled"))},t.prototype.getViewsWithButtons=function(){return this.viewsWithButtons},t}();e.default=o},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(3),o=n(4),s=n(32),a=n(31),l=n(48),u=function(t){function e(e,n){var i=t.call(this)||this;return i._calendar=e,i.overrides=r.extend({},n),i.dynamicOverrides={},i.compute(),i}return i.__extends(e,t),e.prototype.add=function(t){var e,n=0;this.recordOverrides(t);for(e in t)n++;if(1===n){if("height"===e||"contentHeight"===e||"aspectRatio"===e)return void this._calendar.updateViewSize(!0);if("defaultDate"===e)return;if("businessHours"===e)return;if(/^(event|select)(Overlap|Constraint|Allow)$/.test(e))return;if("timezone"===e)return void this._calendar.view.flash("initialEvents")}this._calendar.renderHeader(),this._calendar.renderFooter(),this._calendar.viewsByType={},this._calendar.reinitView()},e.prototype.compute=function(){var t,e,n,i,r;t=o.firstDefined(this.dynamicOverrides.locale,this.overrides.locale),e=a.localeOptionHash[t],e||(t=s.globalDefaults.locale,e=a.localeOptionHash[t]||{}),n=o.firstDefined(this.dynamicOverrides.isRTL,this.overrides.isRTL,e.isRTL,s.globalDefaults.isRTL),i=n?s.rtlDefaults:{},this.dirDefaults=i,this.localeDefaults=e,r=s.mergeOptions([s.globalDefaults,i,e,this.overrides,this.dynamicOverrides]),a.populateInstanceComputableOptions(r),this.reset(r)},e.prototype.recordOverrides=function(t){var e;for(e in t)this.dynamicOverrides[e]=t[e];this._calendar.viewSpecManager.clearCache(),this.compute()},e}(l.default);e.default=u},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(0),r=n(3),o=n(22),s=n(4),a=n(32),l=n(31),u=function(){function t(t,e){this.optionsManager=t,this._calendar=e,this.clearCache()}return t.prototype.clearCache=function(){this.viewSpecCache={}},t.prototype.getViewSpec=function(t){var e=this.viewSpecCache;return e[t]||(e[t]=this.buildViewSpec(t))},t.prototype.getUnitViewSpec=function(t){var e,n,i;if(-1!==r.inArray(t,s.unitsDesc))for(e=this._calendar.header.getViewsWithButtons(),r.each(o.viewHash,function(t){e.push(t)}),n=0;n').appendTo(t),this.el.find(".fc-body > tr > td").append(t),this.timeGrid.headContainerEl=this.el.find(".fc-head-container"),this.timeGrid.setElement(e),this.dayGrid&&(this.dayGrid.setElement(this.el.find(".fc-day-grid")),this.dayGrid.bottomCoordPadding=this.dayGrid.el.next("hr").outerHeight())},e.prototype.unrenderSkeleton=function(){this.timeGrid.removeElement(),this.dayGrid&&this.dayGrid.removeElement(),this.scroller.destroy()},e.prototype.renderSkeletonHtml=function(){var t=this.calendar.theme;return''+(this.opt("columnHeader")?'':"")+'
 
'+(this.dayGrid?'

':"")+"
"},e.prototype.axisStyleAttr=function(){return null!=this.axisWidth?'style="width:'+this.axisWidth+'px"':""},e.prototype.getNowIndicatorUnit=function(){return this.timeGrid.getNowIndicatorUnit()},e.prototype.updateSize=function(e,n,i){var r,o,s;if(t.prototype.updateSize.call(this,e,n,i),this.axisWidth=u.matchCellWidths(this.el.find(".fc-axis")),!this.timeGrid.colEls)return void(n||(o=this.computeScrollerHeight(e),this.scroller.setHeight(o)));var a=this.el.find(".fc-row:not(.fc-scroller *)");this.timeGrid.bottomRuleEl.hide(),this.scroller.clear(),u.uncompensateScroll(a),this.dayGrid&&(this.dayGrid.removeSegPopover(),r=this.opt("eventLimit"),r&&"number"!=typeof r&&(r=5),r&&this.dayGrid.limitRows(r)),n||(o=this.computeScrollerHeight(e),this.scroller.setHeight(o),s=this.scroller.getScrollbarWidths(),(s.left||s.right)&&(u.compensateScroll(a,s),o=this.computeScrollerHeight(e),this.scroller.setHeight(o)),this.scroller.lockOverflow(s),this.timeGrid.getTotalSlatHeight()"+e.buildGotoAnchorHtml({date:i,type:"week",forceOff:this.colCnt>1},u.htmlEscape(t))+""):'"},renderBgIntroHtml:function(){var t=this.view;return'"},renderIntroHtml:function(){return'"}},o={renderBgIntroHtml:function(){var t=this.view;return'"+t.getAllDayHtml()+""},renderIntroHtml:function(){return'"}}},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(3),o=n(0),s=n(4),a=n(40),l=n(56),u=n(60),d=n(55),c=n(53),p=n(5),h=n(12),f=n(246),g=n(247),v=n(248),y=[{hours:1},{minutes:30},{minutes:15},{seconds:30},{seconds:15}],m=function(t){function e(e){var n=t.call(this,e)||this;return n.processOptions(),n}return i.__extends(e,t),e.prototype.componentFootprintToSegs=function(t){var e,n=this.sliceRangeByTimes(t.unzonedRange);for(e=0;e=0;e--)if(n=o.duration(y[e]),i=s.divideDurationByDuration(n,t),s.isInt(i)&&i>1)return n;return o.duration(t)},e.prototype.renderDates=function(t){this.dateProfile=t,this.updateDayTable(),this.renderSlats(),this.renderColumns()},e.prototype.unrenderDates=function(){this.unrenderColumns()},e.prototype.renderSkeleton=function(){var t=this.view.calendar.theme;this.el.html('
'),this.bottomRuleEl=this.el.find("hr")},e.prototype.renderSlats=function(){var t=this.view.calendar.theme;this.slatContainerEl=this.el.find("> .fc-slats").html(''+this.renderSlatRowHtml()+"
"),this.slatEls=this.slatContainerEl.find("tr"),this.slatCoordCache=new c.default({els:this.slatEls,isVertical:!0})},e.prototype.renderSlatRowHtml=function(){for(var t,e,n,i=this.view,r=i.calendar,a=r.theme,l=this.isRTL,u=this.dateProfile,d="",c=o.duration(+u.minTime),p=o.duration(0);c"+(e?""+s.htmlEscape(t.format(this.labelFormat))+"":"")+"",d+='"+(l?"":n)+''+(l?n:"")+"",c.add(this.slotDuration),p.add(this.slotDuration);return d},e.prototype.renderColumns=function(){var t=this.dateProfile,e=this.view.calendar.theme;this.dayRanges=this.dayDates.map(function(e){return new p.default(e.clone().add(t.minTime),e.clone().add(t.maxTime))}),this.headContainerEl&&this.headContainerEl.html(this.renderHeadHtml()),this.el.find("> .fc-bg").html(''+this.renderBgTrHtml(0)+"
"),this.colEls=this.el.find(".fc-day, .fc-disabled-day"),this.colCoordCache=new c.default({els:this.colEls,isHorizontal:!0}),this.renderContentSkeleton()},e.prototype.unrenderColumns=function(){this.unrenderContentSkeleton()},e.prototype.renderContentSkeleton=function(){var t,e,n="";for(t=0;t
';e=this.contentSkeletonEl=r('
'+n+"
"),this.colContainerEls=e.find(".fc-content-col"),this.helperContainerEls=e.find(".fc-helper-container"),this.fgContainerEls=e.find(".fc-event-container:not(.fc-helper-container)"),this.bgContainerEls=e.find(".fc-bgevent-container"),this.highlightContainerEls=e.find(".fc-highlight-container"),this.businessContainerEls=e.find(".fc-business-container"),this.bookendCells(e.find("tr")),this.el.append(e)},e.prototype.unrenderContentSkeleton=function(){this.contentSkeletonEl&&(this.contentSkeletonEl.remove(),this.contentSkeletonEl=null,this.colContainerEls=null,this.helperContainerEls=null,this.fgContainerEls=null,this.bgContainerEls=null,this.highlightContainerEls=null,this.businessContainerEls=null)},e.prototype.groupSegsByCol=function(t){var e,n=[];for(e=0;e
').css("top",i).appendTo(this.colContainerEls.eq(n[e].col))[0]);n.length>0&&o.push(r('
').css("top",i).appendTo(this.el.find(".fc-content-skeleton"))[0]),this.nowIndicatorEls=r(o)}},e.prototype.unrenderNowIndicator=function(){this.nowIndicatorEls&&(this.nowIndicatorEls.remove(),this.nowIndicatorEls=null)},e.prototype.updateSize=function(e,n,i){t.prototype.updateSize.call(this,e,n,i),this.slatCoordCache.build(),i&&this.updateSegVerticals([].concat(this.eventRenderer.getSegs(),this.businessSegs||[]))},e.prototype.getTotalSlatHeight=function(){return this.slatContainerEl.outerHeight()},e.prototype.computeDateTop=function(t,e){return this.computeTimeTop(o.duration(t-e.clone().stripTime()))},e.prototype.computeTimeTop=function(t){var e,n,i=this.slatEls.length,r=this.dateProfile,o=(t-r.minTime)/this.slotDuration;return o=Math.max(0,o),o=Math.min(i,o),e=Math.floor(o),e=Math.min(e,i-1),n=o-e,this.slatCoordCache.getTopPosition(e)+this.slatCoordCache.getHeight(e)*n},e.prototype.updateSegVerticals=function(t){this.computeSegVerticals(t),this.assignSegVerticals(t)},e.prototype.computeSegVerticals=function(t){var e,n,i,r=this.opt("agendaEventMinHeight");for(e=0;e
'+o.htmlEscape(this.opt("noEventsMessage"))+"
")},e.prototype.renderSegList=function(t){var e,n,i,o=this.groupSegsByDay(t),s=r('
'),a=s.find("tbody");for(e=0;e'+(e?this.buildGotoAnchorHtml(t,{class:"fc-list-heading-main"},o.htmlEscape(t.format(e))):"")+(n?this.buildGotoAnchorHtml(t,{class:"fc-list-heading-alt"},o.htmlEscape(t.format(n))):"")+""},e}(a.default);e.default=c,c.prototype.eventRendererClass=u.default,c.prototype.eventPointingClass=d.default},,,,,,function(t,e,n){var i=n(3),r=n(16),o=n(4),s=n(220);n(10),n(47),n(256),n(257),n(260),n(261),n(262),n(263),i.fullCalendar=r,i.fn.fullCalendar=function(t){var e=Array.prototype.slice.call(arguments,1),n=this;return this.each(function(r,a){var l,u=i(a),d=u.data("fullCalendar");"string"==typeof t?"getCalendar"===t?r||(n=d):"destroy"===t?d&&(d.destroy(),u.removeData("fullCalendar")):d?i.isFunction(d[t])?(l=d[t].apply(d,e),r||(n=l),"destroy"===t&&u.removeData("fullCalendar")):o.warn("'"+t+"' is an unknown FullCalendar method."):o.warn("Attempting to call a FullCalendar method on an element with no calendar."):d||(d=new s.default(u,t),u.data("fullCalendar",d),d.render())}),n},t.exports=r},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(48),o=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.setElement=function(t){this.el=t,this.bindGlobalHandlers(),this.renderSkeleton(),this.set("isInDom",!0)},e.prototype.removeElement=function(){this.unset("isInDom"),this.unrenderSkeleton(),this.unbindGlobalHandlers(),this.el.remove()},e.prototype.bindGlobalHandlers=function(){},e.prototype.unbindGlobalHandlers=function(){},e.prototype.renderSkeleton=function(){},e.prototype.unrenderSkeleton=function(){},e}(r.default);e.default=o},function(t,e){Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function t(t){this.items=t||[]}return t.prototype.proxyCall=function(t){for(var e=[],n=1;n"),e.append(this.renderSection("left")).append(this.renderSection("right")).append(this.renderSection("center")).append('
')):this.removeElement()},t.prototype.removeElement=function(){this.el&&(this.el.remove(),this.el=null)},t.prototype.renderSection=function(t){var e=this,n=this.calendar,o=n.theme,s=n.optionsManager,a=n.viewSpecManager,l=i('
'),u=this.toolbarOptions.layout[t],d=s.get("customButtons")||{},c=s.overrides.buttonText||{},p=s.get("buttonText")||{};return u&&i.each(u.split(" "),function(t,s){var u,h=i(),f=!0;i.each(s.split(","),function(t,s){var l,u,g,v,y,m,b,w,D;"title"===s?(h=h.add(i("

 

")),f=!1):((l=d[s])?(g=function(t){l.click&&l.click.call(w[0],t)},(v=o.getCustomButtonIconClass(l))||(v=o.getIconClass(s))||(y=l.text)):(u=a.getViewSpec(s))?(e.viewsWithButtons.push(s),g=function(){n.changeView(s)},(y=u.buttonTextOverride)||(v=o.getIconClass(s))||(y=u.buttonTextDefault)):n[s]&&(g=function(){n[s]()},(y=c[s])||(v=o.getIconClass(s))||(y=p[s])),g&&(b=["fc-"+s+"-button",o.getClass("button"),o.getClass("stateDefault")],y?(m=r.htmlEscape(y),D=""):v&&(m="",D=' aria-label="'+s+'"'),w=i('").click(function(t){w.hasClass(o.getClass("stateDisabled"))||(g(t),(w.hasClass(o.getClass("stateActive"))||w.hasClass(o.getClass("stateDisabled")))&&w.removeClass(o.getClass("stateHover")))}).mousedown(function(){w.not("."+o.getClass("stateActive")).not("."+o.getClass("stateDisabled")).addClass(o.getClass("stateDown"))}).mouseup(function(){w.removeClass(o.getClass("stateDown"))}).hover(function(){w.not("."+o.getClass("stateActive")).not("."+o.getClass("stateDisabled")).addClass(o.getClass("stateHover"))},function(){w.removeClass(o.getClass("stateHover")).removeClass(o.getClass("stateDown"))}),h=h.add(w)))}),f&&h.first().addClass(o.getClass("cornerLeft")).end().last().addClass(o.getClass("cornerRight")).end(),h.length>1?(u=i("
"),f&&u.addClass(o.getClass("buttonGroup")),u.append(h),l.append(u)):l.append(h)}),l},t.prototype.updateTitle=function(t){this.el&&this.el.find("h4").text(t)},t.prototype.activateButton=function(t){this.el&&this.el.find(".fc-"+t+"-button").addClass(this.calendar.theme.getClass("stateActive"))},t.prototype.deactivateButton=function(t){this.el&&this.el.find(".fc-"+t+"-button").removeClass(this.calendar.theme.getClass("stateActive"))},t.prototype.disableButton=function(t){this.el&&this.el.find(".fc-"+t+"-button").prop("disabled",!0).addClass(this.calendar.theme.getClass("stateDisabled"))},t.prototype.enableButton=function(t){this.el&&this.el.find(".fc-"+t+"-button").prop("disabled",!1).removeClass(this.calendar.theme.getClass("stateDisabled"))},t.prototype.getViewsWithButtons=function(){return this.viewsWithButtons},t}();e.default=o},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(3),o=n(4),s=n(32),a=n(31),l=n(48),u=function(t){function e(e,n){var i=t.call(this)||this;return i._calendar=e,i.overrides=r.extend({},n),i.dynamicOverrides={},i.compute(),i}return i.__extends(e,t),e.prototype.add=function(t){var e,n=0;this.recordOverrides(t);for(e in t)n++;if(1===n){if("height"===e||"contentHeight"===e||"aspectRatio"===e)return void this._calendar.updateViewSize(!0);if("defaultDate"===e)return;if("businessHours"===e)return;if(/^(event|select)(Overlap|Constraint|Allow)$/.test(e))return;if("timezone"===e)return void this._calendar.view.flash("initialEvents")}this._calendar.renderHeader(),this._calendar.renderFooter(),this._calendar.viewsByType={},this._calendar.reinitView()},e.prototype.compute=function(){var t,e,n,i,r;t=o.firstDefined(this.dynamicOverrides.locale,this.overrides.locale),e=a.localeOptionHash[t],e||(t=s.globalDefaults.locale,e=a.localeOptionHash[t]||{}),n=o.firstDefined(this.dynamicOverrides.isRTL,this.overrides.isRTL,e.isRTL,s.globalDefaults.isRTL),i=n?s.rtlDefaults:{},this.dirDefaults=i,this.localeDefaults=e,r=s.mergeOptions([s.globalDefaults,i,e,this.overrides,this.dynamicOverrides]),a.populateInstanceComputableOptions(r),this.reset(r)},e.prototype.recordOverrides=function(t){var e;for(e in t)this.dynamicOverrides[e]=t[e];this._calendar.viewSpecManager.clearCache(),this.compute()},e}(l.default);e.default=u},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(0),r=n(3),o=n(22),s=n(4),a=n(32),l=n(31),u=function(){function t(t,e){this.optionsManager=t,this._calendar=e,this.clearCache()}return t.prototype.clearCache=function(){this.viewSpecCache={}},t.prototype.getViewSpec=function(t){var e=this.viewSpecCache;return e[t]||(e[t]=this.buildViewSpec(t))},t.prototype.getUnitViewSpec=function(t){var e,n,i;if(-1!==r.inArray(t,s.unitsDesc))for(e=this._calendar.header.getViewsWithButtons(),r.each(o.viewHash,function(t){e.push(t)}),n=0;ne.top&&t.top
'+(n?'
'+u.htmlEscape(n)+"
":"")+(d.title?'
'+u.htmlEscape(d.title)+"
":"")+'
'+(h?'
':"")+""},e.prototype.updateFgSegCoords=function(t){this.timeGrid.computeSegVerticals(t),this.computeFgSegHorizontals(t),this.timeGrid.assignSegVerticals(t),this.assignFgSegHorizontals(t)},e.prototype.computeFgSegHorizontals=function(t){var e,n,s;if(this.sortEventSegs(t),e=i(t),r(e),n=e[0]){for(s=0;s').addClass(e.className||"").css({top:0,left:0}).append(e.content).appendTo(e.parentEl),this.el.on("click",".fc-close",function(){t.hide()}),e.autoHide&&this.listenTo(i(document),"mousedown",this.documentMousedown)},t.prototype.documentMousedown=function(t){this.el&&!i(t.target).closest(this.el).length&&this.hide()},t.prototype.removeElement=function(){this.hide(),this.el&&(this.el.remove(),this.el=null),this.stopListeningTo(i(document),"mousedown")},t.prototype.position=function(){var t,e,n,o,s,a=this.options,l=this.el.offsetParent().offset(),u=this.el.outerWidth(),d=this.el.outerHeight(),c=i(window),p=r.getScrollParent(this.el);o=a.top||0,s=void 0!==a.left?a.left:void 0!==a.right?a.right-u:0,p.is(window)||p.is(document)?(p=c,t=0,e=0):(n=p.offset(),t=n.top,e=n.left),t+=c.scrollTop(),e+=c.scrollLeft(),!1!==a.viewportConstrain&&(o=Math.min(o,t+p.outerHeight()-d-this.margin),o=Math.max(o,t+this.margin),s=Math.min(s,e+p.outerWidth()-u-this.margin),s=Math.max(s,e+this.margin)),this.el.css({top:o-l.top,left:s-l.left})},t.prototype.trigger=function(t){this.options[t]&&this.options[t].apply(this,Array.prototype.slice.call(arguments,1))},t}();e.default=s,o.default.mixInto(s)},function(t,e,n){function i(t,e){var n,i;for(n=0;n=t.leftCol)return!0;return!1}function r(t,e){return t.leftCol-e.leftCol}Object.defineProperty(e,"__esModule",{value:!0});var o=n(2),s=n(3),a=n(4),l=n(42),u=function(t){function e(e,n){var i=t.call(this,e,n)||this;return i.dayGrid=e,i}return o.__extends(e,t),e.prototype.renderBgRanges=function(e){e=s.grep(e,function(t){return t.eventDef.isAllDay()}),t.prototype.renderBgRanges.call(this,e)},e.prototype.renderFgSegs=function(t){var e=this.rowStructs=this.renderSegRows(t);this.dayGrid.rowEls.each(function(t,n){s(n).find(".fc-content-skeleton > table").append(e[t].tbodyEl)})},e.prototype.unrenderFgSegs=function(){for(var t,e=this.rowStructs||[];t=e.pop();)t.tbodyEl.remove();this.rowStructs=null},e.prototype.renderSegRows=function(t){var e,n,i=[];for(e=this.groupSegRows(t),n=0;n"),a.append(d)),v[i][o]=d,y[i][o]=d,o++}var i,r,o,a,l,u,d,c=this.dayGrid.colCnt,p=this.buildSegLevels(e),h=Math.max(1,p.length),f=s(""),g=[],v=[],y=[];for(i=0;i"),g.push([]),v.push([]),y.push([]),r)for(l=0;l').append(u.el),u.leftCol!==u.rightCol?d.attr("colspan",u.rightCol-u.leftCol+1):y[i][o]=d;o<=u.rightCol;)v[i][o]=d,g[i][o]=u,o++;a.append(d)}n(c),this.dayGrid.bookendCells(a),f.append(a)}return{row:t,tbodyEl:f,cellMatrix:v,segMatrix:g,segLevels:p,segs:e}},e.prototype.buildSegLevels=function(t){var e,n,o,s=[];for(this.sortEventSegs(t),e=0;e'+a.htmlEscape(n)+""),i=''+(a.htmlEscape(o.title||"")||" ")+"",'
'+(this.dayGrid.isRTL?i+" "+h:h+" "+i)+"
"+(u?'
':"")+(d?'
':"")+""},e}(l.default);e.default=u},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(3),o=n(58),s=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.renderSegs=function(t,e){var n,i=[];return n=this.eventRenderer.renderSegRows(t),this.component.rowEls.each(function(t,o){var s,a,l=r(o),u=r('
');e&&e.row===t?a=e.el.position().top:(s=l.find(".fc-content-skeleton tbody"),s.length||(s=l.find(".fc-content-skeleton table")),a=s.position().top),u.css("top",a).find("table").append(n[t].tbodyEl),l.append(u),i.push(u[0])}),r(i)},e}(o.default);e.default=s},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(3),o=n(57),s=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.fillSegTag="td",e}return i.__extends(e,t),e.prototype.attachSegEls=function(t,e){var n,i,r,o=[];for(n=0;n
'),o=i.find("tr"),a>0&&o.append(''),o.append(e.el.attr("colspan",l-a)),l'),this.component.bookendCells(o),i},e}(o.default);e.default=s},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(228),o=n(5),s=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.buildRenderRange=function(e,n,i){var r,s=t.prototype.buildRenderRange.call(this,e,n,i),a=this.msToUtcMoment(s.startMs,i),l=this.msToUtcMoment(s.endMs,i);return this.opt("fixedWeekCount")&&(r=Math.ceil(l.diff(a,"weeks",!0)),l.add(6-r,"weeks")),new o.default(a,l)},e}(r.default);e.default=s},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(4),o=n(42),s=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.renderFgSegs=function(t){t.length?this.component.renderSegList(t):this.component.renderEmptyMessage()},e.prototype.fgSegHtml=function(t){var e,n=this.view,i=n.calendar,o=i.theme,s=t.footprint,a=s.eventDef,l=s.componentFootprint,u=a.url,d=["fc-list-item"].concat(this.getClasses(a)),c=this.getBgColor(a);return e=l.isAllDay?n.getAllDayHtml():n.isMultiDayRange(l.unzonedRange)?t.isStart||t.isEnd?r.htmlEscape(this._getTimeText(i.msToMoment(t.startMs),i.msToMoment(t.endMs),l.isAllDay)):n.getAllDayHtml():r.htmlEscape(this.getTimeText(s)),u&&d.push("fc-has-url"),''+(this.displayEventTime?''+(e||"")+"":"")+'"+r.htmlEscape(a.title||"")+""},e.prototype.computeEventTimeFormat=function(){return this.opt("mediumTimeFormat")},e}(o.default);e.default=s},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(3),o=n(59),s=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.handleClick=function(e,n){var i;t.prototype.handleClick.call(this,e,n),r(n.target).closest("a[href]").length||(i=e.footprint.eventDef.url)&&!n.isDefaultPrevented()&&(window.location.href=i)},e}(o.default);e.default=s},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(38),r=n(52),o=n(215),s=n(216);i.default.registerClass(r.default),i.default.registerClass(o.default),i.default.registerClass(s.default)},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(51),r=n(213),o=n(214),s=n(258),a=n(259);i.defineThemeSystem("standard",r.default),i.defineThemeSystem("jquery-ui",o.default),i.defineThemeSystem("bootstrap3",s.default),i.defineThemeSystem("bootstrap4",a.default)},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(19),o=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e}(r.default);e.default=o,o.prototype.classes={widget:"fc-bootstrap3",tableGrid:"table-bordered",tableList:"table",tableListHeading:"active",buttonGroup:"btn-group",button:"btn btn-default",stateActive:"active",stateDisabled:"disabled",today:"alert alert-info",popover:"panel panel-default",popoverHeader:"panel-heading",popoverContent:"panel-body",headerRow:"panel-default",dayRow:"panel-default",listView:"panel panel-default"},o.prototype.baseIconClass="glyphicon",o.prototype.iconClasses={close:"glyphicon-remove",prev:"glyphicon-chevron-left",next:"glyphicon-chevron-right",prevYear:"glyphicon-backward",nextYear:"glyphicon-forward"},o.prototype.iconOverrideOption="bootstrapGlyphicons",o.prototype.iconOverrideCustomButtonOption="bootstrapGlyphicon",o.prototype.iconOverridePrefix="glyphicon-"},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(19),o=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e}(r.default);e.default=o,o.prototype.classes={widget:"fc-bootstrap4",tableGrid:"table-bordered",tableList:"table",tableListHeading:"table-active",buttonGroup:"btn-group",button:"btn btn-primary",stateActive:"active",stateDisabled:"disabled",today:"alert alert-info",popover:"card card-primary",popoverHeader:"card-header",popoverContent:"card-body",headerRow:"table-bordered",dayRow:"table-bordered",listView:"card card-primary"},o.prototype.baseIconClass="fa",o.prototype.iconClasses={close:"fa-times",prev:"fa-chevron-left",next:"fa-chevron-right",prevYear:"fa-angle-double-left",nextYear:"fa-angle-double-right"},o.prototype.iconOverrideOption="bootstrapFontAwesome",o.prototype.iconOverrideCustomButtonOption="bootstrapFontAwesome",o.prototype.iconOverridePrefix="fa-"},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(22),r=n(62),o=n(229);i.defineView("basic",{class:r.default}),i.defineView("basicDay",{type:"basic",duration:{days:1}}),i.defineView("basicWeek",{type:"basic",duration:{weeks:1}}),i.defineView("month",{class:o.default,duration:{months:1},defaults:{fixedWeekCount:!0}})},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(22),r=n(226);i.defineView("agenda",{class:r.default,defaults:{allDaySlot:!0,slotDuration:"00:30:00",slotEventOverlap:!0}}),i.defineView("agendaDay",{type:"agenda",duration:{days:1}}),i.defineView("agendaWeek",{type:"agenda",duration:{weeks:1}})},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(22),r=n(230);i.defineView("list",{class:r.default,buttonTextKey:"list",defaults:{buttonText:"list",listDayFormat:"LL",noEventsMessage:"No events to display"}}),i.defineView("listDay",{type:"list",duration:{days:1},defaults:{listDayFormat:"dddd"}}),i.defineView("listWeek",{type:"list",duration:{weeks:1},defaults:{listDayFormat:"dddd",listDayAltFormat:"LL"}}),i.defineView("listMonth",{type:"list",duration:{month:1},defaults:{listDayAltFormat:"dddd"}}),i.defineView("listYear",{type:"list",duration:{year:1},defaults:{listDayAltFormat:"dddd"}})},function(t,e){Object.defineProperty(e,"__esModule",{value:!0})}])}); \ No newline at end of file diff --git a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/Aplicacion.js b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/Aplicacion.js index 2aaf3f87b..fbd5ed159 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/Aplicacion.js +++ b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/Aplicacion.js @@ -207,7 +207,7 @@ this.ActualizarItem = function () { $.each(data, function (key, item) { - if (item[2] == $("#txtDescripcion").val()) { + if (item[2].toLowerCase() == $("#txtDescripcion").val().toLowerCase()) { repetido = true return false; } @@ -255,7 +255,7 @@ this.InsertarItem = function () { $.each(data, function (key, item) { - if (item[2] == $("#txtDescripcion").val()) { + if (item[2].toLowerCase() == $("#txtDescripcion").val().toLowerCase()) { repetido = true return false; } diff --git a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/Contenido.js b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/Contenido.js index 92e705fbd..b2e3841d4 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/Contenido.js +++ b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/Contenido.js @@ -183,6 +183,24 @@ this.ActualizarItem = function () { { return; } TableItems = $('#TableItems').DataTable(); + var repetido = false; + var data = TableItems + .rows() + .data(); + + $.each(data, function (key, item) { + + if (item[2].toLowerCase() == $("#txtDescripcion").val().toLowerCase()) { + repetido = true + return false; + } + + }); + + if (repetido == true) { + toastr.warning('Ya existe un contenido con el mismo título', Message_Warning); + return; + } Contenido = { IdContenido: $('#hiddenId').val(), @@ -207,7 +225,26 @@ this.InsertarItem = function () { { return; } + TableItems = $('#TableItems').DataTable(); + var repetido = false; + var data = TableItems + .rows() + .data(); + + $.each(data, function (key, item) { + + if (item[2].toLowerCase() == $("#txtDescripcion").val().toLowerCase()) { + repetido = true + return false; + } + + }); + + if (repetido == true) { + toastr.warning('Ya existe un contenido con el mismo título', Message_Warning); + return; + } Contenido = { Estado: 1, Descripcion: $("#txtDescripcion").val(), diff --git a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/DocumentoTecnico.js b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/DocumentoTecnico.js index 0847e636a..57468f0b5 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/DocumentoTecnico.js +++ b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/DocumentoTecnico.js @@ -185,7 +185,27 @@ this.ActualizarItem = function () { if (!confirm("Se guardarán los cambios.\n ¿Desea continuar?")) { return; } + TableItems = $('#TableItems').DataTable(); + var repetido = false; + var data = TableItems + .rows() + .data(); + + $.each(data, function (key, item) { + + if (item[2].toLowerCase() == $("#txtDescripcion").val().toLowerCase()) { + repetido = true + return false; + } + + }); + + if (repetido == true) { + toastr.warning('Ya existe un documento técnico con el mismo título', Message_Warning); + return; + } + DocumentoTecnico = { IdDocumentoTecnico: $('#hiddenId').val(), @@ -210,7 +230,26 @@ this.InsertarItem = function () { { return; } + TableItems = $('#TableItems').DataTable(); + var repetido = false; + var data = TableItems + .rows() + .data(); + + $.each(data, function (key, item) { + + if (item[2].toLowerCase() == $("#txtDescripcion").val().toLowerCase()) { + repetido = true + return false; + } + + }); + + if (repetido == true) { + toastr.warning('Ya existe un documento técnico con el mismo título', Message_Warning); + return; + } DocumentoTecnico = { Estado: Estados.Inicial.Codigo, Descripcion: $("#txtDescripcion").val(), diff --git a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/EmisorPN.js b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/EmisorPN.js index 9467d39ff..3ecbd7b06 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/EmisorPN.js +++ b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/EmisorPN.js @@ -160,7 +160,7 @@ this.ActualizarItem = function () { $.each(data, function (key, item) { - if (item[2] == $("#txtDescripcion").val()) { + if (item[2].toLowerCase() == $("#txtDescripcion").val().toLowerCase()) { repetido = true return false; } @@ -201,7 +201,7 @@ this.InsertarItem = function () { $.each(data, function (key, item) { - if (item[2] == $("#txtDescripcion").val()) { + if (item[2].toLowerCase() == $("#txtDescripcion").val().toLowerCase()) { repetido = true return false; } diff --git a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/GrupoTematico.js b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/GrupoTematico.js index d1d4cd652..dc5c587bb 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/GrupoTematico.js +++ b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/GrupoTematico.js @@ -181,7 +181,26 @@ this.ActualizarItem = function () { if (!confirm("Se guardarán los cambios.\n ¿Desea continuar?")) { return; } + TableItems = $('#TableItems').DataTable(); + var repetido = false; + var data = TableItems + .rows() + .data(); + + $.each(data, function (key, item) { + + if (item[2].toLowerCase() == $("#txtDescripcion").val().toLowerCase()) { + repetido = true + return false; + } + + }); + + if (repetido == true) { + toastr.warning('Ya existe un grupo temático con la misma descripción', Message_Warning); + return; + } GrupoTematico = { IdGrupoTematico: $('#hiddenId').val(), @@ -207,6 +226,24 @@ this.InsertarItem = function () { TableItems = $('#TableItems').DataTable(); + var repetido = false; + var data = TableItems + .rows() + .data(); + + $.each(data, function (key, item) { + + if (item[2].toLowerCase() == $("#txtDescripcion").val().toLowerCase()) { + repetido = true + return false; + } + + }); + + if (repetido == true) { + toastr.warning('Ya existe un grupo temático con la misma descripción', Message_Warning); + return; + } GrupoTematico = { Estado: 1, diff --git a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/Login.js b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/Login.js index 727ef3499..684ca6456 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/Login.js +++ b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/Login.js @@ -14,6 +14,13 @@ $('#btnIniciar').keyup(function (e) { } }); +$('#txtContrasena').keyup(function (e) { + if (e.which == 13) { + validarFormulario(); + + } +}); + function validarFormulario() { var Contador = 0; diff --git a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/PalabraClave.js b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/PalabraClave.js index 72a7e3e84..f8bce2c1f 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/PalabraClave.js +++ b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/PalabraClave.js @@ -181,7 +181,26 @@ this.ActualizarItem = function () { if (!confirm("Se guardarán los cambios.\n ¿Desea continuar?")) { return; } + TableItems = $('#TableItems').DataTable(); + var repetido = false; + var data = TableItems + .rows() + .data(); + + $.each(data, function (key, item) { + + if (item[2].toLowerCase() == $("#txtDescripcion").val().toLowerCase()) { + repetido = true + return false; + } + + }); + + if (repetido == true) { + toastr.warning('Ya existe una palabra clave con la misma descripción', Message_Warning); + return; + } PalabraClave = { IdPalabraClave: $('#hiddenId').val(), @@ -206,6 +225,24 @@ this.InsertarItem = function () { TableItems = $('#TableItems').DataTable(); + var repetido = false; + var data = TableItems + .rows() + .data(); + + $.each(data, function (key, item) { + + if (item[2].toLowerCase() == $("#txtDescripcion").val().toLowerCase()) { + repetido = true + return false; + } + + }); + + if (repetido == true) { + toastr.warning('Ya existe una palabra clave con la misma descripción', Message_Warning); + return; + } PalabraClave = { Estado: 1, Descripcion: $("#txtDescripcion").val() diff --git a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/PropuestaNormativa/DetallePropuestaNormativa.js b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/PropuestaNormativa/DetallePropuestaNormativa.js index 720d477a7..e001e757b 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/PropuestaNormativa/DetallePropuestaNormativa.js +++ b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/PropuestaNormativa/DetallePropuestaNormativa.js @@ -10,7 +10,7 @@ var DescTipoproyecto; var SubTipoproyecto; var respuestaForo; var IdPropuestaNormativa; - +var IdDocumentoAdjunto; var Promotor; var Estado; @@ -19,13 +19,12 @@ jQuery(document).ready(function () { $(document).tooltip(); $('#tableParticipantes').TableInit(0, false, true, true, false, null, null); $('#tableParticipantes').DataTable().column(1).visible(false); - $('#tableDocAuxiliares').TableInit(0, false, false, false, false, null, null); $('#tableForo').TableInit(0, false, false, false, false, null, null); $('#tableMatriz').TableInit(0, false, false, false, false, null, null); $('#tableDocAuxiliares').TableInit(0, false, false, false, false, null, null); - $('#tableDocAuxiliares').DataTable().column(3).visible(false); + $('#tableDocAuxiliares').DataTable().column(0).visible(false); $('#tableDocExpediente').TableInit(0, false, false, false, false, null, null); - $('#tableDocExpediente').DataTable().column(3).visible(false); + $('#tableDocExpediente').DataTable().column(0).visible(false); $('#tableDocForo').TableInit(0, false, false, false, false, null, null); $('#tableDocForo').DataTable().column(0).visible(false); $('#tableDocForo').DataTable().column(4).visible(false); @@ -124,8 +123,10 @@ jQuery(document).ready(function () { } } - - + + $('#btnGuardarEvento').show(); + $('#btnReenviarEvento').hide(); + Calendario(model.EventosJSON); }); @@ -214,8 +215,19 @@ this.getDataModel = function () { $("#btnGuardarEvento").click(function () { GuardarEvento(); }); + $("#btnGuardarReenviarEvento").unbind("click"); + $("#btnGuardarReenviarEvento").click(function () { + GuardarReenviarEvento(); + }); + + $("#btnReenviarEvento").unbind("click"); + $("#btnReenviarEvento").click(function () { + ReenviarEvento(); + }); $("#txtFechaFinalizacion").datepicker(); + + $("#txtNombreProyecto").readOnly(); $("#txtPromotorProyecto").readOnly(); @@ -226,7 +238,7 @@ this.getDataModel = function () { $("#txtFechaMaxima").readOnly(); $("#txtEstado").readOnly(); $('#btnModificar').disable(); - + CargarUsuarios(); @@ -857,7 +869,10 @@ this.CargarTablaDocumentosAuxiliares = function (data) { $.each(lista, function (key, item) { - var option = $("#ucAbrirDocumento").html(); + var option = $("#ucOpcionesDocumentos").html(); + option = replaceAll("[$ruta]", "'" + item.RutaDescarga + "'", option); + option = replaceAll("[$nombre]", "'" + item.RutaDescarga + "'", option); + option = replaceAll("[$id]", item.IdDocumentoAdjunto, option); var ext = item.TipoArchivo.toLowerCase(); switch (ext) { case 'pdf': @@ -885,22 +900,15 @@ this.CargarTablaDocumentosAuxiliares = function (data) { option = replaceAll("[$icon]", "fa-file-text", option); } - tableDocAuxiliares.row.add([option, + tableDocAuxiliares.row.add([item.IdDocumentoAdjunto, item.Nombre, item.UsuarioCreacion, - item.RutaDescarga]).draw(); + option]).draw(); }); ENDREQUEST(); } -$('#tableDocAuxiliares').on('click', 'button', function () { - - var data = $('#tableDocAuxiliares').DataTable().row($(this).parents('tr')).data(); - - window.open(data[3]); - -}); // Documentos Expediente @@ -930,7 +938,10 @@ this.CargarTablaDocumentosExpediente = function (data) { $.each(lista, function (key, item) { - var option = $("#ucAbrirDocumento").html(); + var option = $("#ucOpcionesDocumentos").html(); + option = replaceAll("[$ruta]", "'" + item.RutaDescarga + "'", option); + option = replaceAll("[$nombre]", "'" + item.RutaDescarga + "'", option); + option = replaceAll("[$id]", item.IdDocumentoAdjunto, option); var ext = item.TipoArchivo.toLowerCase(); switch (ext) { case 'pdf': @@ -958,22 +969,53 @@ this.CargarTablaDocumentosExpediente = function (data) { option = replaceAll("[$icon]", "fa-file-text", option); } - tableDocExpediente.row.add([option, + tableDocExpediente.row.add([item.IdDocumentoAdjunto, item.Nombre, item.UsuarioCreacion, - item.RutaDescarga]).draw(); + option]).draw(); }); - + ENDREQUEST(); +} +this.AbrirDocAdjuntos = function (ruta){ + window.open(ruta); } -$('#tableDocExpediente').on('click', 'button', function () { +this.RemoverAdjunto = function (nombre,id) { - var data = $('#tableDocExpediente').DataTable().row($(this).parents('tr')).data(); + var separador = "/"; + var arregloDeSubCadenas = nombre.split(separador); + var nombredoc = arregloDeSubCadenas[arregloDeSubCadenas.length-1] - window.open(data[3]); -}); + var uri = SinortWCF + '/api/RemoverAdjunto'; + IdDocumentoAdjunto = id; + var model = { + Nombre: nombredoc, + Carpeta: RepositorioLocal + + }; + + AjaxPostData(uri, model, false, false, EliminarbaseAdjunto,null , null); + +} +this.EliminarbaseAdjunto = function (data) { + + if (data.CodigoRespuesta == "EXITOSO") { + var uri = SinortWCF + '/api/EliminarbaseAdjunto'; + + var model = { + Id: IdDocumentoAdjunto + }; + + AjaxPostData(uri, model, false, true, null, null, null); + CargarDocumentosExpediente(); + CargarDocumentosAuxiliares(); + + } else { + ENDREQUEST(); + } +} //Documentos Foro @@ -1505,6 +1547,52 @@ function ActualizarUpload() { } //Calendario +this.ReenviarEvento = function () { + + $('#modalReenviarEvento').modal('show'); + $('#modalReenviarEvento').on('shown.bs.modal', function (e) { + $("#txtFechaReenviar").datepicker(); + $("#txtFechaReenviar").css("z-index", "9999"); + }) +} + +this.GuardarReenviarEvento = function () { + + if (!$("#formReenviarEvento").valid()) { + toastr.warning("Ingresar todos los campos que son requeridos."); + return false; + } + + if ($("#txtFechaReenviar").val() == '') { + toastr.warning("Debe seleccionar una fecha", Message_Warning); + return; + } + + + tableDocEvento = $('#tableDocEvento').DataTable(); + var Iddoc; + var data = tableDocEvento + .rows() + .data(); + + $.each(data, function (key, item) { + Iddoc = item[0] + }); + + var uri = SinortWCF + '/api/GuardarEventoProyectoNormativo'; + + model.Evento = { + IdProyectoNormativo: model.ProyectoNormativo.IdProyectoNormativo, + IdDocumento: Iddoc, + Titulo: $("#txtTituloEvento").val(), + Descripcion: $("#txtDescripcionEvento").val(), + FechaInicio: $("#txtFechaReenviar").DateFormatWCF(), + FechaFin: $("#txtFechaReenviar").DateFormatWCF() + } + + AjaxPostData(uri, model, false, true, EventoGuardado, null, null); + +} this.GuardarEvento = function () { @@ -1574,7 +1662,8 @@ this.ModalEvento = function (inicio,fin) { $("#txtFinEvento").readOnly(); $("#txtUbicacion").val($("#txtNombreProyecto").val()); $("#btnVerAdjuntosEvento").enable(); - $("#btnGuardarEvento").enable(); + $("#btnGuardarEvento").show(); + $("#btnReenviarEvento").hide(); } @@ -1597,7 +1686,8 @@ this.ModalEventoPopUp = function (evento) { $("#txtUbicacion").val($("#txtNombreProyecto").val()); $("#btnVerAdjuntosEvento").disable(); - $("#btnGuardarEvento").disable(); + $("#btnGuardarEvento").hide(); + $("#btnReenviarEvento").show(); CargarDocumentosEventos(miEvento[0].IdDocumento); @@ -1614,31 +1704,7 @@ this.LimpiarModalevento = function () { $("#txtUbicacion").val($("#txtNombreProyecto").val()); } -this.CargarCalendario = function (data) { - - $('#calendar').fullCalendar({ - eventClick: function (event) { - ModalEventoPopUp(event); - - }, - - - selectable: true, - eventLimit: true, - events: data, - select: function (startDate, endDate) { - ModalEvento(startDate.format(), endDate.format()); - - } - }); - - - - $('#calendar').fullCalendar('render'); - - -} this.Calendario = function (data) { //$('#modalCalendario').modal('show'); @@ -1660,9 +1726,9 @@ this.Calendario = function (data) { }); $('#calendar').fullCalendar('render'); - var container = document.getElementById('divCalendarioRef'); - var refreshContent = container.innerHTML; - container.innerHTML = refreshContent; + //var container = document.getElementById('divCalendarioRef'); + //var refreshContent = container.innerHTML; + //container.innerHTML = refreshContent; //$('#modalCalendario').on('loaded.bs.modal', function (e) { // $('#calendar').fullCalendar('render'); //}) diff --git a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/Rol.js b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/Rol.js index abc907b1a..a18ec8032 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/Rol.js +++ b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/Rol.js @@ -204,7 +204,7 @@ this.ActualizarItem = function () { $.each(data, function (key, item) { - if (item[2] == $("#txtDescripcion").val()) { + if (item[2].toLowerCase() == $("#txtDescripcion").val().toLowerCase()) { repetido = true return false; } diff --git a/AYA.SlnSynor/AYA.SlnSynor/Views/Catalogos/Contenido.cshtml b/AYA.SlnSynor/AYA.SlnSynor/Views/Catalogos/Contenido.cshtml index baa9f116b..ceec0220b 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Views/Catalogos/Contenido.cshtml +++ b/AYA.SlnSynor/AYA.SlnSynor/Views/Catalogos/Contenido.cshtml @@ -19,7 +19,7 @@ ID - Descripción + Título Detalle @@ -58,7 +58,7 @@ @*Descripción*@
- +
@@ -66,7 +66,7 @@ @*--------------------- Descripcion Larga ---------------------------------------------------------*@
- +
diff --git a/AYA.SlnSynor/AYA.SlnSynor/Views/Catalogos/DocumentoTecnico.cshtml b/AYA.SlnSynor/AYA.SlnSynor/Views/Catalogos/DocumentoTecnico.cshtml index 7cdfbe7e3..2aa3e9c7d 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Views/Catalogos/DocumentoTecnico.cshtml +++ b/AYA.SlnSynor/AYA.SlnSynor/Views/Catalogos/DocumentoTecnico.cshtml @@ -19,7 +19,7 @@ ID - Descripción + Título Detalle @@ -59,7 +59,7 @@ @*Descripción*@
- +
@@ -67,7 +67,7 @@ @*--------------------- Descripcion Larga ---------------------------------------------------------*@
- +
diff --git a/AYA.SlnSynor/AYA.SlnSynor/Views/Catalogos/GrupoTematico.cshtml b/AYA.SlnSynor/AYA.SlnSynor/Views/Catalogos/GrupoTematico.cshtml index 0a9e41100..05cc5ca50 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Views/Catalogos/GrupoTematico.cshtml +++ b/AYA.SlnSynor/AYA.SlnSynor/Views/Catalogos/GrupoTematico.cshtml @@ -19,7 +19,7 @@ ID - Descripción + Título Detalle @@ -58,7 +58,7 @@ @*Descripción*@
- +
@@ -66,7 +66,7 @@ @*--------------------- Descripcion Larga ---------------------------------------------------------*@
- +
diff --git a/AYA.SlnSynor/AYA.SlnSynor/Views/PropuestaNormativa/DetallePropuesta.cshtml b/AYA.SlnSynor/AYA.SlnSynor/Views/PropuestaNormativa/DetallePropuesta.cshtml index 4f57aecf2..026900e3c 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Views/PropuestaNormativa/DetallePropuesta.cshtml +++ b/AYA.SlnSynor/AYA.SlnSynor/Views/PropuestaNormativa/DetallePropuesta.cshtml @@ -3,7 +3,6 @@ Layout = "~/Views/Shared/_Layout.cshtml"; } -
@*

   [$Propuesta]

*@
@@ -73,11 +72,13 @@
- +
+ + @*---------------------Fecha de finalización de consulta---------------------------------------------*@
@@ -221,10 +222,11 @@ - + - + + @@ -271,7 +273,16 @@ @* Calendario *@
-
+ +
+ + +
+ + +
+ + @*

  @@ -287,15 +298,15 @@

-
+
-
-
-
+ +
+
-
+
*@ @@ -308,10 +319,11 @@
Nombre Creado por
- + - + +
Nombre Creado por
@@ -352,6 +364,21 @@ @* PLANTILLAS *@ + + +
+ @*--------------------- Adjuntar ---------------------------------------------------------*@
@@ -850,8 +878,10 @@
+ @@ -859,6 +889,40 @@
+ +@*--------------------- Reenviar Evento ---------------------------------------------------------*@ + } @Scripts.Render("~/Sinort-Scripts/PropuestaNormativa/DetallePropuestaNormativa.js") diff --git a/AYA.SlnSynor/AYA.SlnSynor/Views/Shared/_Layout.cshtml b/AYA.SlnSynor/AYA.SlnSynor/Views/Shared/_Layout.cshtml index 9d3cb121a..3cf2445f0 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Views/Shared/_Layout.cshtml +++ b/AYA.SlnSynor/AYA.SlnSynor/Views/Shared/_Layout.cshtml @@ -226,7 +226,7 @@
  • - Estadísticas y Reportes + Estadísticas y Reportes @* Estadísticas y Reportes diff --git a/AYA.SlnSynor/AYA.SlnSynor/dist/img/GotaEstadisticas.png b/AYA.SlnSynor/AYA.SlnSynor/dist/img/GotaEstadisticas.png deleted file mode 100644 index 9581c53a3c9613092a7b2522dd87bad8429644ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 42052 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%0AitIrxWEMWM2lSn)iyXpvL52|xy?Psan~`d#P# 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 Eg8rpUg#Z8m diff --git a/AYA.SlnSynor/AYA.SlnSynor/dist/img/GotaEstadisticas1.png b/AYA.SlnSynor/AYA.SlnSynor/dist/img/GotaEstadisticas1.png new file mode 100644 index 0000000000000000000000000000000000000000..f72f73f4f2fcee7ea1f0c81ec3dc2f5174614b35 GIT binary patch literal 41782 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 x.IdDocumentoAdjunto.ToString() == model.Id); + if (Actual != null) + { + Conn.Entry(Actual).State = System.Data.Entity.EntityState.Deleted; + Conn.SaveChanges(); + Conn.Commit(); + model.CodigoRespuesta = EnumTipoCodigoRespuesta.EXITOSO.ToString(); + } + } + } + catch (DbEntityValidationException ex) + { + log.Error(ex); + model.CodigoRespuesta = EnumTipoCodigoRespuesta.ERROR.ToString(); + } + catch (Exception ex) + { + log.Error(ex); + model.CodigoRespuesta = EnumTipoCodigoRespuesta.ERROR.ToString(); + } + + return model; + } + public List ObtenerAdjuntos(AdjuntosJSON model) { List registros = null;