UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

86 lines (84 loc) 2.82 kB
/** * DevExtreme (cjs/core/config.js) * Version: 23.2.6 * Build date: Wed May 01 2024 * * Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; exports.default = void 0; var _extend = require("./utils/extend"); var _errors = _interopRequireDefault(require("./errors")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj } } const config = { rtlEnabled: false, defaultCurrency: "USD", defaultUseCurrencyAccountingStyle: true, oDataFilterToLower: true, serverDecimalSeparator: ".", decimalSeparator: ".", thousandsSeparator: ",", forceIsoDateParsing: true, wrapActionsBeforeExecute: true, useLegacyStoreResult: false, useJQuery: void 0, editorStylingMode: void 0, useLegacyVisibleIndex: false, floatingActionButtonConfig: { icon: "add", closeIcon: "close", label: "", position: { at: "right bottom", my: "right bottom", offset: { x: -16, y: -16 } }, maxSpeedDialActionCount: 5, shading: false, direction: "auto" }, optionsParser: optionsString => { if ("{" !== optionsString.trim().charAt(0)) { optionsString = "{" + optionsString + "}" } try { return JSON.parse(optionsString) } catch (ex) { try { return JSON.parse(normalizeToJSONString(optionsString)) } catch (exNormalize) { throw _errors.default.Error("E3018", ex, optionsString) } } } }; const normalizeToJSONString = optionsString => optionsString.replace(/'/g, '"').replace(/,\s*([\]}])/g, "$1").replace(/([{,])\s*([^":\s]+)\s*:/g, '$1"$2":'); const deprecatedFields = ["decimalSeparator", "thousandsSeparator"]; const configMethod = function() { if (!arguments.length) { return config } const newConfig = arguments.length <= 0 ? void 0 : arguments[0]; deprecatedFields.forEach(deprecatedField => { if (newConfig[deprecatedField]) { const message = "Now, the ".concat(deprecatedField, " is selected based on the specified locale."); _errors.default.log("W0003", "config", deprecatedField, "19.2", message) } }); (0, _extend.extend)(config, newConfig) }; if ("undefined" !== typeof DevExpress && DevExpress.config) { configMethod(DevExpress.config) } var _default = configMethod; exports.default = _default; module.exports = exports.default; module.exports.default = exports.default;