PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` /** * -------------------------------------------------------------------------- * Bootstrap (v5.2.2): base-component.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) * -------------------------------------------------------------------------- */ import Data from './dom/data' import { executeAfterTransition, getElement } from './util/index' import EventHandler from './dom/event-handler' import Config from './util/config' /** * Constants */ const VERSION = '5.2.2' /** * Class definition */ class BaseComponent extends Config { constructor(element, config) { super() element = getElement(element) if (!element) { return } this._element = element this._config = this._getConfig(config) Data.set(this._element, this.constructor.DATA_KEY, this) } // Public dispose() { Data.remove(this._element, this.constructor.DATA_KEY) EventHandler.off(this._element, this.constructor.EVENT_KEY) for (const propertyName of Object.getOwnPropertyNames(this)) { this[propertyName] = null } } _queueCallback(callback, element, isAnimated = true) { executeAfterTransition(callback, element, isAnimated) } _getConfig(config) { config = this._mergeConfigObj(config, this._element) config = this._configAfterMerge(config) this._typeCheckConfig(config) return config } // Static static getInstance(element) { return Data.get(getElement(element), this.DATA_KEY) } static getOrCreateInstance(element, config = {}) { return this.getInstance(element) || new this(element, typeof config === 'object' ? config : null) } static get VERSION() { return VERSION } static get DATA_KEY() { return `bs.${this.NAME}` } static get EVENT_KEY() { return `.${this.DATA_KEY}` } static eventName(name) { return `${name}${this.EVENT_KEY}` } } export default BaseComponent