UNPKG

@openui5/sap.ui.core

Version:

OpenUI5 Core Library sap.ui.core

35 lines (30 loc) 851 B
/* * OpenUI5 * (c) Copyright 2026 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ sap.ui.define([], function () { "use strict"; /*global Map */ var mRegistry = new Map(); /** * @private * @ui5-restricted */ var _Calendars = { get: function (sCalendarType) { /** @deprecated As of version 1.120.0 */ if (!mRegistry.has(sCalendarType)) { sap.ui.requireSync("sap/ui/core/date/" + sCalendarType); // TODO: establish full async alternative } if (mRegistry.has(sCalendarType)) { return mRegistry.get(sCalendarType); } throw new TypeError("Load required calendar 'sap/ui/core/date/" + sCalendarType + "' in advance"); }, set: function (sCalendarType, CalendarClass) { mRegistry.set(sCalendarType, CalendarClass); } }; return _Calendars; });