Files
config-pacs-docker/nv/html/nv-nopdf/styles/packages/mdg_validation-error.js
2025-02-26 14:49:25 +07:00

98 lines
3.9 KiB
JavaScript

//////////////////////////////////////////////////////////////////////////
// //
// This is a generated file. You can view the original //
// source in your browser if your browser supports source maps. //
// Source maps are supported by all recent versions of Chrome, Safari, //
// and Firefox, and by Internet Explorer 11. //
// //
//////////////////////////////////////////////////////////////////////////
(function () {
/* Imports */
var Meteor = Package.meteor.Meteor;
var global = Package.meteor.global;
var meteorEnv = Package.meteor.meteorEnv;
var check = Package.check.check;
var Match = Package.check.Match;
var meteorInstall = Package.modules.meteorInstall;
var meteorBabelHelpers = Package['babel-runtime'].meteorBabelHelpers;
var Promise = Package.promise.Promise;
var Symbol = Package['ecmascript-runtime-client'].Symbol;
var Map = Package['ecmascript-runtime-client'].Map;
var Set = Package['ecmascript-runtime-client'].Set;
/* Package-scope variables */
var ValidationError;
var require = meteorInstall({"node_modules":{"meteor":{"mdg:validation-error":{"validation-error.js":function(require){
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// //
// packages/mdg_validation-error/validation-error.js //
// //
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
var _inheritsLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/inheritsLoose"));
// The "details" property of the ValidationError must be an array of objects
// containing at least two properties. The "name" and "type" properties are
// required.
var errorsPattern = [Match.ObjectIncluding({
name: String,
type: String
})];
ValidationError =
/*#__PURE__*/
function (_Meteor$Error) {
(0, _inheritsLoose2.default)(_class, _Meteor$Error);
function _class(errors) {
var _this;
var message = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : ValidationError.DEFAULT_MESSAGE;
check(errors, errorsPattern);
check(message, String);
return (_this = _Meteor$Error.call(this, ValidationError.ERROR_CODE, message, errors) || this) || (0, _assertThisInitialized2.default)(_this);
} // Static method checking if a given Meteor.Error is an instance of
// ValidationError.
_class.is = function () {
function is(err) {
return err instanceof Meteor.Error && err.error === ValidationError.ERROR_CODE;
}
return is;
}();
return _class;
}(Meteor.Error); // Universal validation error code to be use in applications and packages.
ValidationError.ERROR_CODE = 'validation-error'; // Default validation error message that can be changed globally.
ValidationError.DEFAULT_MESSAGE = 'Validation failed';
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
}}}}},{
"extensions": [
".js",
".json"
]
});
require("/node_modules/meteor/mdg:validation-error/validation-error.js");
/* Exports */
Package._define("mdg:validation-error", {
ValidationError: ValidationError
});
})();