Server IP : 150.95.80.236 / Your IP : 18.119.110.139 Web Server : Apache System : Linux host-150-95-80-236 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : social-telecare ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/pcu.in.th/uat.pcu.in.th/demo15/src/plugins/formvalidation/dist/js/plugins/ |
Upload File : |
/** * FormValidation (https://formvalidation.io), v1.9.0 (cbf8fab) * The best validation library for JavaScript * (c) 2013 - 2021 Nguyen Huu Phuoc <me@phuoc.ng> */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, (global.FormValidation = global.FormValidation || {}, global.FormValidation.plugins = global.FormValidation.plugins || {}, global.FormValidation.plugins.Bootstrap5 = factory())); })(this, (function () { 'use strict'; function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } function _possibleConstructorReturn(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); } function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } function _superPropBase(object, property) { while (!Object.prototype.hasOwnProperty.call(object, property)) { object = _getPrototypeOf(object); if (object === null) break; } return object; } function _get(target, property, receiver) { if (typeof Reflect !== "undefined" && Reflect.get) { _get = Reflect.get; } else { _get = function _get(target, property, receiver) { var base = _superPropBase(target, property); if (!base) return; var desc = Object.getOwnPropertyDescriptor(base, property); if (desc.get) { return desc.get.call(receiver); } return desc.value; }; } return _get(target, property, receiver || target); } var e = FormValidation.utils.classSet; var t = FormValidation.utils.hasClass; var n = FormValidation.plugins.Framework; var l = /*#__PURE__*/function (_n) { _inherits(l, _n); var _super = _createSuper(l); function l(e) { var _this; _classCallCheck(this, l); _this = _super.call(this, Object.assign({}, { eleInvalidClass: "is-invalid", eleValidClass: "is-valid", formClass: "fv-plugins-bootstrap5", rowInvalidClass: "fv-plugins-bootstrap5-row-invalid", rowPattern: /^(.*)(col|offset)(-(sm|md|lg|xl))*-[0-9]+(.*)$/, rowSelector: ".row", rowValidClass: "fv-plugins-bootstrap5-row-valid" }, e)); _this.eleValidatedHandler = _this.handleElementValidated.bind(_assertThisInitialized(_this)); return _this; } _createClass(l, [{ key: "install", value: function install() { _get(_getPrototypeOf(l.prototype), "install", this).call(this); this.core.on("core.element.validated", this.eleValidatedHandler); } }, { key: "uninstall", value: function uninstall() { _get(_getPrototypeOf(l.prototype), "install", this).call(this); this.core.off("core.element.validated", this.eleValidatedHandler); } }, { key: "handleElementValidated", value: function handleElementValidated(n) { var _l = n.element.getAttribute("type"); if (("checkbox" === _l || "radio" === _l) && n.elements.length > 1 && t(n.element, "form-check-input")) { var _l5 = n.element.parentElement; if (t(_l5, "form-check") && t(_l5, "form-check-inline")) { e(_l5, { "is-invalid": !n.valid, "is-valid": n.valid }); } } } }, { key: "onIconPlaced", value: function onIconPlaced(n) { e(n.element, { "fv-plugins-icon-input": true }); var _l3 = n.element.parentElement; if (t(_l3, "input-group")) { _l3.parentElement.insertBefore(n.iconElement, _l3.nextSibling); if (n.element.nextElementSibling && t(n.element.nextElementSibling, "input-group-text")) { e(n.iconElement, { "fv-plugins-icon-input-group": true }); } } var i = n.element.getAttribute("type"); if ("checkbox" === i || "radio" === i) { var _i = _l3.parentElement; if (t(_l3, "form-check")) { e(n.iconElement, { "fv-plugins-icon-check": true }); _l3.parentElement.insertBefore(n.iconElement, _l3.nextSibling); } else if (t(_l3.parentElement, "form-check")) { e(n.iconElement, { "fv-plugins-icon-check": true }); _i.parentElement.insertBefore(n.iconElement, _i.nextSibling); } } } }, { key: "onMessagePlaced", value: function onMessagePlaced(n) { n.messageElement.classList.add("invalid-feedback"); var _l4 = n.element.parentElement; if (t(_l4, "input-group")) { _l4.appendChild(n.messageElement); e(_l4, { "has-validation": true }); return; } var i = n.element.getAttribute("type"); if (("checkbox" === i || "radio" === i) && t(n.element, "form-check-input") && !t(_l4, "form-check")) { n.elements[n.elements.length - 1].parentElement.appendChild(n.messageElement); } } }]); return l; }(n); return l; }));