Server IP : 150.95.80.236 / Your IP : 3.147.193.37 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/amd/plugins/ |
Upload File : |
var __extends = (this && this.__extends) || (function () { 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 (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); define(["require", "exports", "../utils/classSet", "../utils/hasClass", "./Framework"], function (require, exports, classSet_1, hasClass_1, Framework_1) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Bootstrap5 = (function (_super) { __extends(Bootstrap5, _super); function Bootstrap5(opts) { var _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', }, opts)) || this; _this.eleValidatedHandler = _this.handleElementValidated.bind(_this); return _this; } Bootstrap5.prototype.install = function () { _super.prototype.install.call(this); this.core.on('core.element.validated', this.eleValidatedHandler); }; Bootstrap5.prototype.uninstall = function () { _super.prototype.install.call(this); this.core.off('core.element.validated', this.eleValidatedHandler); }; Bootstrap5.prototype.handleElementValidated = function (e) { var type = e.element.getAttribute('type'); if (('checkbox' === type || 'radio' === type) && e.elements.length > 1 && (0, hasClass_1.default)(e.element, 'form-check-input')) { var inputParent = e.element.parentElement; if ((0, hasClass_1.default)(inputParent, 'form-check') && (0, hasClass_1.default)(inputParent, 'form-check-inline')) { (0, classSet_1.default)(inputParent, { 'is-invalid': !e.valid, 'is-valid': e.valid, }); } } }; Bootstrap5.prototype.onIconPlaced = function (e) { (0, classSet_1.default)(e.element, { 'fv-plugins-icon-input': true, }); var parent = e.element.parentElement; if ((0, hasClass_1.default)(parent, 'input-group')) { parent.parentElement.insertBefore(e.iconElement, parent.nextSibling); if (e.element.nextElementSibling && (0, hasClass_1.default)(e.element.nextElementSibling, 'input-group-text')) { (0, classSet_1.default)(e.iconElement, { 'fv-plugins-icon-input-group': true, }); } } var type = e.element.getAttribute('type'); if ('checkbox' === type || 'radio' === type) { var grandParent = parent.parentElement; if ((0, hasClass_1.default)(parent, 'form-check')) { (0, classSet_1.default)(e.iconElement, { 'fv-plugins-icon-check': true, }); parent.parentElement.insertBefore(e.iconElement, parent.nextSibling); } else if ((0, hasClass_1.default)(parent.parentElement, 'form-check')) { (0, classSet_1.default)(e.iconElement, { 'fv-plugins-icon-check': true, }); grandParent.parentElement.insertBefore(e.iconElement, grandParent.nextSibling); } } }; Bootstrap5.prototype.onMessagePlaced = function (e) { e.messageElement.classList.add('invalid-feedback'); var inputParent = e.element.parentElement; if ((0, hasClass_1.default)(inputParent, 'input-group')) { inputParent.appendChild(e.messageElement); (0, classSet_1.default)(inputParent, { 'has-validation': true, }); return; } var type = e.element.getAttribute('type'); if (('checkbox' === type || 'radio' === type) && (0, hasClass_1.default)(e.element, 'form-check-input') && (0, hasClass_1.default)(inputParent, 'form-check') && !(0, hasClass_1.default)(inputParent, 'form-check-inline')) { e.elements[e.elements.length - 1].parentElement.appendChild(e.messageElement); } }; return Bootstrap5; }(Framework_1.default)); exports.default = Bootstrap5; });