{ "version": 3, "sources": ["src/app/components/loading-indicator/loading-indicator.component.ts", "src/app/components/loading-indicator/loading-indicator.component.html"], "sourcesContent": ["/**\n * Copyright (c) 2020-2024 by Bosch.IO GmbH\n *\n * http://www.bosch.io\n * All rights reserved,\n * also regarding any disposal, exploitation, reproduction,\n * editing, distribution, as well as in the event of\n * applications for industrial property rights.\n *\n * This software is the confidential and proprietary information\n * of Bosch.IO GmbH. You shall not disclose\n * such Confidential Information and shall use it only in\n * accordance with the terms of the license agreement you\n * entered into with Bosch.IO.\n */\nimport { Component } from '@angular/core';\n\n@Component({\n selector: 'nal3d-loading-indicator',\n standalone: true,\n imports: [],\n templateUrl: './loading-indicator.component.html',\n styleUrl: './loading-indicator.component.scss',\n})\nexport class LoadingIndicatorComponent {}\n", "