@indigina/ui-kit 1.0.129 → 1.0.130

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.
@@ -2757,7 +2757,8 @@ class KitRadioButtonComponent {
2757
2757
  this.changed = new EventEmitter();
2758
2758
  }
2759
2759
  buildLabelId(index) {
2760
- return `radio-button-${index}`;
2760
+ const componentName = this.name;
2761
+ return `${componentName}-${index}`;
2761
2762
  }
2762
2763
  handleClick(event, item) {
2763
2764
  if (this.readonly || this.disabled || this.needToPrevent(item)) {