{"version":3,"sources":["node_modules/ngx-bootstrap/collapse/fesm2022/ngx-bootstrap-collapse.mjs"],"sourcesContent":["import * as i1 from '@angular/animations';\nimport { style, animate } from '@angular/animations';\nimport * as i0 from '@angular/core';\nimport { EventEmitter, Directive, Output, HostBinding, Input, NgModule } from '@angular/core';\nconst COLLAPSE_ANIMATION_TIMING = '400ms cubic-bezier(0.4,0.0,0.2,1)';\nconst expandAnimation = [style({\n height: 0,\n visibility: 'hidden'\n}), animate(COLLAPSE_ANIMATION_TIMING, style({\n height: '*',\n visibility: 'visible'\n}))];\nconst collapseAnimation = [style({\n height: '*',\n visibility: 'visible'\n}), animate(COLLAPSE_ANIMATION_TIMING, style({\n height: 0,\n visibility: 'hidden'\n}))];\nlet CollapseDirective = /*#__PURE__*/(() => {\n class CollapseDirective {\n set display(value) {\n this._display = value;\n if (value === 'none') {\n this.hide();\n return;\n }\n this.isAnimated ? this.toggle() : this.show();\n }\n /** A flag indicating visibility of content (shown or hidden) */\n set collapse(value) {\n this.collapseNewValue = value;\n if (!this._player || this._isAnimationDone) {\n this.isExpanded = value;\n this.toggle();\n }\n }\n get collapse() {\n return this.isExpanded;\n }\n constructor(_el, _renderer, _builder) {\n this._el = _el;\n this._renderer = _renderer;\n /** This event fires as soon as content collapses */\n this.collapsed = new EventEmitter();\n /** This event fires when collapsing is started */\n this.collapses = new EventEmitter();\n /** This event fires as soon as content becomes visible */\n this.expanded = new EventEmitter();\n /** This event fires when expansion is started */\n this.expands = new EventEmitter();\n // shown\n this.isExpanded = true;\n this.collapseNewValue = true;\n // hidden\n this.isCollapsed = false;\n // stale state\n this.isCollapse = true;\n // animation state\n this.isCollapsing = false;\n /** turn on/off animation */\n this.isAnimated = false;\n this._display = 'block';\n this._stylesLoaded = false;\n this._COLLAPSE_ACTION_NAME = 'collapse';\n this._EXPAND_ACTION_NAME = 'expand';\n this._factoryCollapseAnimation = _builder.build(collapseAnimation);\n this._factoryExpandAnimation = _builder.build(expandAnimation);\n }\n ngAfterViewChecked() {\n this._stylesLoaded = true;\n if (!this._player || !this._isAnimationDone) {\n return;\n }\n this._player.reset();\n this._renderer.setStyle(this._el.nativeElement, 'height', '*');\n }\n /** allows to manually toggle content visibility */\n toggle() {\n if (this.isExpanded) {\n this.hide();\n } else {\n this.show();\n }\n }\n /** allows to manually hide content */\n hide() {\n this.isCollapsing = true;\n this.isExpanded = false;\n this.isCollapsed = true;\n this.isCollapsing = false;\n this.collapses.emit(this);\n this._isAnimationDone = false;\n this.animationRun(this.isAnimated, this._COLLAPSE_ACTION_NAME)(() => {\n this._isAnimationDone = true;\n if (this.collapseNewValue !== this.isCollapsed && this.isAnimated) {\n this.show();\n return;\n }\n this.collapsed.emit(this);\n this._renderer.setStyle(this._el.nativeElement, 'display', 'none');\n });\n }\n /** allows to manually show collapsed content */\n show() {\n this._renderer.setStyle(this._el.nativeElement, 'display', this._display);\n this.isCollapsing = true;\n this.isExpanded = true;\n this.isCollapsed = false;\n this.isCollapsing = false;\n this.expands.emit(this);\n this._isAnimationDone = false;\n this.animationRun(this.isAnimated, this._EXPAND_ACTION_NAME)(() => {\n this._isAnimationDone = true;\n if (this.collapseNewValue !== this.isCollapsed && this.isAnimated) {\n this.hide();\n return;\n }\n this.expanded.emit(this);\n this._renderer.removeStyle(this._el.nativeElement, 'overflow');\n });\n }\n animationRun(isAnimated, action) {\n if (!isAnimated || !this._stylesLoaded) {\n return callback => callback();\n }\n this._renderer.setStyle(this._el.nativeElement, 'overflow', 'hidden');\n this._renderer.addClass(this._el.nativeElement, 'collapse');\n const factoryAnimation = action === this._EXPAND_ACTION_NAME ? this._factoryExpandAnimation : this._factoryCollapseAnimation;\n if (this._player) {\n this._player.reset();\n }\n this._player = factoryAnimation.create(this._el.nativeElement);\n this._player.play();\n return callback => this._player?.onDone(callback);\n }\n static {\n this.ɵfac = function CollapseDirective_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CollapseDirective)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i1.AnimationBuilder));\n };\n }\n static {\n this.ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: CollapseDirective,\n selectors: [[\"\", \"collapse\", \"\"]],\n hostVars: 9,\n hostBindings: function CollapseDirective_HostBindings(rf, ctx) {\n if (rf & 2) {\n i0.ɵɵattribute(\"aria-hidden\", ctx.isCollapsed);\n i0.ɵɵclassProp(\"collapse\", ctx.isCollapse)(\"in\", ctx.isExpanded)(\"show\", ctx.isExpanded)(\"collapsing\", ctx.isCollapsing);\n }\n },\n inputs: {\n display: \"display\",\n isAnimated: \"isAnimated\",\n collapse: \"collapse\"\n },\n outputs: {\n collapsed: \"collapsed\",\n collapses: \"collapses\",\n expanded: \"expanded\",\n expands: \"expands\"\n },\n exportAs: [\"bs-collapse\"]\n });\n }\n }\n return CollapseDirective;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet CollapseModule = /*#__PURE__*/(() => {\n class CollapseModule {\n // @deprecated method not required anymore, will be deleted in v19.0.0\n static forRoot() {\n return {\n ngModule: CollapseModule,\n providers: []\n };\n }\n static {\n this.ɵfac = function CollapseModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CollapseModule)();\n };\n }\n static {\n this.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: CollapseModule\n });\n }\n static {\n this.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({});\n }\n }\n return CollapseModule;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { CollapseDirective, CollapseModule };\n"],"mappings":"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","names":["COLLAPSE_ANIMATION_TIMING","expandAnimation","style","animate","collapseAnimation","CollapseDirective","value","_el","_renderer","_builder","EventEmitter","isAnimated","action","callback","factoryAnimation","__ngFactoryType__","ɵɵdirectiveInject","ElementRef","Renderer2","AnimationBuilder","ɵɵdefineDirective","rf","ctx","ɵɵattribute","ɵɵclassProp","CollapseModule","ɵɵdefineNgModule","ɵɵdefineInjector"],"x_google_ignoreList":[0]}