fediplan/public/js/bootstrap-toggle.min.js

14 lines
9.2 KiB
JavaScript
Raw Permalink Normal View History

2024-05-18 15:23:43 +00:00
/* Copyright Notice
2024-05-18 17:43:51 +00:00
* bootstrap5-toggle v5.1.1
2024-05-18 15:23:43 +00:00
* https://palcarazm.github.io/bootstrap5-toggle/
* @author 2011-2014 Min Hur (https://github.com/minhur)
* @author 2018-2019 Brent Ely (https://github.com/gitbrent)
* @author 2022 Pablo Alcaraz Martínez (https://github.com/palcarazm)
* @funding GitHub Sponsors
* @see https://github.com/sponsors/palcarazm
* @license MIT
* @see https://github.com/palcarazm/bootstrap5-toggle/blob/master/LICENSE
*/
2024-05-18 17:43:51 +00:00
"use strict";function sanitize(e){var t;return e&&(t={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;","/":"&#x2F;"},e.replace(/[&<>"'/]/g,function(e){return t[e]}))}!function(){class s{constructor(e,t){const i="BOOTSTRAP TOGGLE DEPRECATION CHECK -- a0Jhux0QySypjjs4tLtEo8xT2kx0AbYaq9K6mgNjWSs0HF0L8T8J0M0o3Kr7zkm7 --",s="attribute",n="option",l=function(e,t,i){console.warn(`Bootstrap Toggle deprecation warning: Using ${t} ${e} is deprected. Use ${i} instead.`)},o="On",a="primary",h=null,d=null,r="Off",m="secondary",g=null,b=null,c="",u="",f=null,p=null,v=0,A=!1,y=null;t=t||{},this.element=e,this.options={onlabel:this.element.getAttribute("data-onlabel")||t.onlabel||i||o,onstyle:sanitize(this.element.getAttribute("data-onstyle"))||t.onstyle||a,onvalue:sanitize(this.element.getAttribute("value"))||sanitize(this.element.getAttribute("data-onvalue"))||t.onvalue||h,ontitle:sanitize(this.element.getAttribute("data-ontitle"))||t.ontitle||sanitize(this.element.getAttribute("title"))||d,offlabel:this.element.getAttribute("data-offlabel")||t.offlabel||i||r,offstyle:sanitize(this.element.getAttribute("data-offstyle"))||t.offstyle||m,offvalue:sanitize(this.element.getAttribute("data-offvalue"))||t.offvalue||g,offtitle:sanitize(this.element.getAttribute("data-offtitle"))||t.offtitle||sanitize(this.element.getAttribute("title"))||b,size:sanitize(this.element.getAttribute("data-size"))||t.size||c,style:sanitize(this.element.getAttribute("data-style"))||t.style||u,width:sanitize(this.element.getAttribute("data-width"))||t.width||f,height:sanitize(this.element.getAttribute("data-height"))||t.height||p,tabindex:sanitize(this.element.getAttribute("tabindex"))||t.tabindex||v,tristate:this.element.hasAttribute("tristate")||t.tristate||A,name:sanitize(this.element.getAttribute("name"))||t.name||y},this.options.onlabel===i&&(sanitize(this.element.getAttribute("data-on"))?(l(s,"data-on","data-onlabel"),this.options.onlabel=this.element.getAttribute("data-on")):t.on?(l(n,"on","onlabel"),this.options.onlabel=t.on):this.options.onlabel=o),this.options.offlabel===i&&(sanitize(this.element.getAttribute("data-off"))?(l(s,"data-off","data-offlabel"),this.options.offlabel=this.element.getAttribute("data-off")):t.off?(l(n,"off","offlabel"),this.options.offlabel=t.off):this.options.offlabel=r),this.render()}render(){function e(e){var t=window.getComputedStyle(e),e=e.offsetHeight,i=parseFloat(t.borderTopWidth);return e-parseFloat(t.borderBottomWidth)-i-parseFloat(t.paddingTop)-parseFloat(t.paddingBottom)}let t;switch(this.options.size){case"large":case"lg":t="btn-lg";break;case"small":case"sm":t="btn-sm";break;case"mini":case"xs":t="btn-xs";break;default:t=""}var i=document.createElement("span"),s=(i.setAttribute("class","btn btn-"+this.options.onstyle+" "+t),i.innerHTML=this.options.onlabel,this.options.ontitle&&i.setAttribute("title",this.options.ontitle),document.createElement("span")),n=(s.setAttribute("class","btn btn-"+this.options.offstyle+" "+t),s.innerHTML=this.options.offlabel,this.options.offtitle&&s.setAttribute("title",this.options.offtitle),document.createElement("span")),l=(n.setAttribute("class","toggle-handle btn "+t),document.createElement("div"));l.setAttribute("class","toggle-group"),l.appendChild(i),l.appendChild(s),l.appendChild(n);let o=document.createElement("div"),a=(o.setAttribute("class","toggle btn"),o.classList.add(this.element.checked?"btn-"+this.options.onstyle:"btn-"+this.options.offstyle),o.setAttribute("tabindex",this.options.tabindex),this.element.checked||o.classList.add("off"),this.options.size&&o.classList.add(t),this.options.style&&this.options.style.split(" ").forEach(e=>{o.classList.add(e)}),(this.element.disabled||this.element.readOnly)&&(o.classList.add("disabled"),o.setAttribute("disabled","disabled")),this.options.onvalue&&this.element.setAttribute("value",this.options.onvalue),null);this.options.offvalue&&((a=this.element.cloneNode()).setAttribute("value",this.options.offvalue),a.setAttribute("data-toggle","invert-toggle"),a.removeAttribute("id"),a.checked=!this.element.checked),this.element.parentEl
2024-05-18 15:23:43 +00:00
//# sourceMappingURL=bootstrap5-toggle.ecmas.min.js.map