However, I am unable to find tabs in codex. While i see an example of tabs in the context dashboards, my use case is different. I want all the tabs in single component where one tab is dependent with another. Each tab has its form and user must fill to navigate to next tab.
Cumulocity comes pre-packaged with ngx-bootstrap. You can use the tabs component from ngx-bootstrap directly in your cumulocity project: Angular Bootstrap
To use the tabs, import the module:
import { TabsModule } from 'ngx-bootstrap/tabs';
@NgModule({
imports: [TabsModule.forRoot(),...]
})
export class AppModule(){}