diff options
author | Mario <mario@mariovavti.com> | 2023-01-25 13:08:05 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-01-25 13:08:05 +0000 |
commit | 08e925758e920b898ac2d08710eab2f9638fe276 (patch) | |
tree | fed0f7b2ee8251c6534d446b3166096889c9aeb3 /library/fullcalendar/packages/moment-timezone | |
parent | 213c8a6eeccc16c34d3a34229a810bd213837c56 (diff) | |
download | volse-hubzilla-08e925758e920b898ac2d08710eab2f9638fe276.tar.gz volse-hubzilla-08e925758e920b898ac2d08710eab2f9638fe276.tar.bz2 volse-hubzilla-08e925758e920b898ac2d08710eab2f9638fe276.zip |
update fullcalendar library
Diffstat (limited to 'library/fullcalendar/packages/moment-timezone')
7 files changed, 0 insertions, 202 deletions
diff --git a/library/fullcalendar/packages/moment-timezone/LICENSE.txt b/library/fullcalendar/packages/moment-timezone/LICENSE.txt deleted file mode 100644 index 2149cfbef..000000000 --- a/library/fullcalendar/packages/moment-timezone/LICENSE.txt +++ /dev/null @@ -1,20 +0,0 @@ -Copyright (c) 2019 Adam Shaw - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/library/fullcalendar/packages/moment-timezone/README.md b/library/fullcalendar/packages/moment-timezone/README.md deleted file mode 100644 index e84412a2a..000000000 --- a/library/fullcalendar/packages/moment-timezone/README.md +++ /dev/null @@ -1,8 +0,0 @@ - -# FullCalendar Moment Timezone Plugin - -A connector to the moment-timezone library - -[View the docs »](https://fullcalendar.io/docs/moment-plugins#moment-timezone) - -This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) diff --git a/library/fullcalendar/packages/moment-timezone/main.d.ts b/library/fullcalendar/packages/moment-timezone/main.d.ts deleted file mode 100644 index eb0a165b1..000000000 --- a/library/fullcalendar/packages/moment-timezone/main.d.ts +++ /dev/null @@ -1,11 +0,0 @@ -// Generated by dts-bundle v0.7.3-fork.1 -// Dependencies for this module: -// ../../../../../moment-timezone/builds/moment-timezone-with-data -// ../../../../../@fullcalendar/core - -declare module '@fullcalendar/moment-timezone' { - import 'moment-timezone/builds/moment-timezone-with-data'; - const _default: import("@fullcalendar/core").PluginDef; - export default _default; -} - diff --git a/library/fullcalendar/packages/moment-timezone/main.esm.js b/library/fullcalendar/packages/moment-timezone/main.esm.js deleted file mode 100644 index df11b1f46..000000000 --- a/library/fullcalendar/packages/moment-timezone/main.esm.js +++ /dev/null @@ -1,58 +0,0 @@ -/*! -FullCalendar Moment Timezone Plugin v4.4.2 -Docs & License: https://fullcalendar.io/ -(c) 2019 Adam Shaw -*/ - -import * as momentNs from 'moment'; -import 'moment-timezone/builds/moment-timezone-with-data'; -import { createPlugin, NamedTimeZoneImpl } from '@fullcalendar/core'; - -/*! *****************************************************************************
-Copyright (c) Microsoft Corporation.
-
-Permission to use, copy, modify, and/or distribute this software for any
-purpose with or without fee is hereby granted.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
-REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
-AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
-INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
-LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
-OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-PERFORMANCE OF THIS SOFTWARE.
-***************************************************************************** */
-/* global Reflect, Promise */
-
-var extendStatics = function(d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return extendStatics(d, b);
-};
-
-function __extends(d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
-} - -var moment = momentNs; // the directly callable function -var MomentNamedTimeZone = /** @class */ (function (_super) { - __extends(MomentNamedTimeZone, _super); - function MomentNamedTimeZone() { - return _super !== null && _super.apply(this, arguments) || this; - } - MomentNamedTimeZone.prototype.offsetForArray = function (a) { - return moment.tz(a, this.timeZoneName).utcOffset(); - }; - MomentNamedTimeZone.prototype.timestampToArray = function (ms) { - return moment.tz(ms, this.timeZoneName).toArray(); - }; - return MomentNamedTimeZone; -}(NamedTimeZoneImpl)); -var main = createPlugin({ - namedTimeZonedImpl: MomentNamedTimeZone -}); - -export default main; diff --git a/library/fullcalendar/packages/moment-timezone/main.js b/library/fullcalendar/packages/moment-timezone/main.js deleted file mode 100644 index 4d9e2df13..000000000 --- a/library/fullcalendar/packages/moment-timezone/main.js +++ /dev/null @@ -1,64 +0,0 @@ -/*! -FullCalendar Moment Timezone Plugin v4.4.2 -Docs & License: https://fullcalendar.io/ -(c) 2019 Adam Shaw -*/ - -(function (global, factory) { - typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('moment'), require('moment-timezone/builds/moment-timezone-with-data'), require('@fullcalendar/core')) : - typeof define === 'function' && define.amd ? define(['exports', 'moment', 'moment-timezone/builds/moment-timezone-with-data', '@fullcalendar/core'], factory) : - (global = global || self, factory(global.FullCalendarMomentTimezone = {}, global.moment, global.moment, global.FullCalendar)); -}(this, function (exports, momentNs, momentTimezoneWithData, core) { 'use strict'; - - /*! *****************************************************************************
- Copyright (c) Microsoft Corporation.
-
- Permission to use, copy, modify, and/or distribute this software for any
- purpose with or without fee is hereby granted.
-
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
- ***************************************************************************** */
- /* global Reflect, Promise */
-
- var extendStatics = function(d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
-
- function __extends(d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- } - - var moment = momentNs; // the directly callable function - var MomentNamedTimeZone = /** @class */ (function (_super) { - __extends(MomentNamedTimeZone, _super); - function MomentNamedTimeZone() { - return _super !== null && _super.apply(this, arguments) || this; - } - MomentNamedTimeZone.prototype.offsetForArray = function (a) { - return moment.tz(a, this.timeZoneName).utcOffset(); - }; - MomentNamedTimeZone.prototype.timestampToArray = function (ms) { - return moment.tz(ms, this.timeZoneName).toArray(); - }; - return MomentNamedTimeZone; - }(core.NamedTimeZoneImpl)); - var main = core.createPlugin({ - namedTimeZonedImpl: MomentNamedTimeZone - }); - - exports.default = main; - - Object.defineProperty(exports, '__esModule', { value: true }); - -})); diff --git a/library/fullcalendar/packages/moment-timezone/main.min.js b/library/fullcalendar/packages/moment-timezone/main.min.js deleted file mode 100644 index 11f30fdec..000000000 --- a/library/fullcalendar/packages/moment-timezone/main.min.js +++ /dev/null @@ -1,6 +0,0 @@ -/*! -FullCalendar Moment Timezone Plugin v4.4.2 -Docs & License: https://fullcalendar.io/ -(c) 2019 Adam Shaw -*/ -!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("moment"),require("moment-timezone/builds/moment-timezone-with-data"),require("@fullcalendar/core")):"function"==typeof define&&define.amd?define(["exports","moment","moment-timezone/builds/moment-timezone-with-data","@fullcalendar/core"],t):t((e=e||self).FullCalendarMomentTimezone={},e.moment,e.moment,e.FullCalendar)}(this,(function(e,t,n,o){"use strict";var r=function(e,t){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)};var i=t,u=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return function(e,t){function n(){this.constructor=e}r(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}(t,e),t.prototype.offsetForArray=function(e){return i.tz(e,this.timeZoneName).utcOffset()},t.prototype.timestampToArray=function(e){return i.tz(e,this.timeZoneName).toArray()},t}(o.NamedTimeZoneImpl),m=o.createPlugin({namedTimeZonedImpl:u});e.default=m,Object.defineProperty(e,"__esModule",{value:!0})}));
\ No newline at end of file diff --git a/library/fullcalendar/packages/moment-timezone/package.json b/library/fullcalendar/packages/moment-timezone/package.json deleted file mode 100644 index 8bc56ec09..000000000 --- a/library/fullcalendar/packages/moment-timezone/package.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "name": "@fullcalendar/moment-timezone", - "version": "4.4.2", - "title": "FullCalendar Moment Timezone Plugin", - "description": "A connector to the moment-timezone library", - "keywords": [ - "calendar", - "event", - "full-sized" - ], - "homepage": "https://fullcalendar.io/", - "docs": "https://fullcalendar.io/docs/moment-plugins#moment-timezone", - "bugs": "https://fullcalendar.io/reporting-bugs", - "repository": { - "type": "git", - "url": "https://github.com/fullcalendar/fullcalendar.git", - "homepage": "https://github.com/fullcalendar/fullcalendar" - }, - "license": "MIT", - "author": { - "name": "Adam Shaw", - "email": "arshaw@arshaw.com", - "url": "http://arshaw.com/" - }, - "copyright": "2019 Adam Shaw", - "peerDependencies": { - "@fullcalendar/core": "~4.4.0", - "moment": "^2.24.0", - "moment-timezone": "^0.5.25" - }, - "main": "main.js", - "module": "main.esm.js", - "unpkg": "main.min.js", - "types": "main.d.ts" -} |