chrv-components 1.11.47 → 1.11.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
@@ -2605,9 +2605,6 @@ class TabComponent {
2605
2605
  this.disabled = input(false);
2606
2606
  this.active = signal(false);
2607
2607
  }
2608
- ngOnInit() {
2609
- console.log(`[TabComponent] Initialized with: label=${this.label()}, disabled=${this.disabled()}`);
2610
- }
2611
2608
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: TabComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2612
2609
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.0.6", type: TabComponent, isStandalone: true, selector: "chr-tab", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div class=\"h-full w-full relative opacity-0 transition-opacity duration-500\" [class.shown]=\"active()\">\r\n <ng-content></ng-content>\r\n</div>", styles: [":host{display:block;width:100%;height:100%;flex-shrink:0}.shown{display:block;opacity:1}\n"] }); }
2613
2610
  }
@@ -2624,7 +2621,6 @@ class TabGroupComponent {
2624
2621
  this.selectTab = (index) => {
2625
2622
  this.selectedIndex.set(index);
2626
2623
  this.tabs.forEach((tab, index) => {
2627
- console.log(tab);
2628
2624
  tab.active.set(index === this.selectedIndex());
2629
2625
  });
2630
2626
  };