{"version":3,"file":"chunk-ondkc66m.js","sources":["packages/vanilla/lib/features/cross-product-layout/src/cross-product-layout.component.ts","packages/vanilla/lib/features/cross-product-layout/src/cross-product-layout.component.html"],"sourcesContent":["import { CommonModule } from '@angular/common';\nimport { Component, OnDestroy, OnInit } from '@angular/core';\n\nimport { HtmlNode } from '@frontend/vanilla/core';\n\n/**\n * @description Adds standalone css class to html node and displays content with dlg-responsive css class\n *\n * @stable\n */\n@Component({\n standalone: true,\n imports: [CommonModule],\n selector: 'lh-cross-product-layout',\n templateUrl: 'cross-product-layout.component.html',\n})\nexport class CrossProductLayoutComponent implements OnInit, OnDestroy {\n constructor(private htmlNode: HtmlNode) {}\n\n ngOnInit(): void {\n this.htmlNode.setCssClass('standalone', true);\n }\n\n ngOnDestroy(): void {\n this.htmlNode.setCssClass('standalone', false);\n }\n}\n","