@konoma-development/react-components 0.2.9 → 0.2.11

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.
@@ -7678,7 +7678,7 @@ function Input$2({
7678
7678
  ref,
7679
7679
  placeholder,
7680
7680
  "data-testid": dataTestId,
7681
- value: value?.toString() !== void 0 ? value?.toString() : "",
7681
+ value: value?.toString(),
7682
7682
  defaultValue: defaultValue?.toString() !== void 0 ? defaultValue?.toString() : "",
7683
7683
  onInput: (e) => {
7684
7684
  onChange(e.currentTarget.value);
@@ -23369,7 +23369,7 @@ function Tabs({
23369
23369
  children: [
23370
23370
  /* @__PURE__ */ jsx("span", { children: tab.label }),
23371
23371
  showCounts && /* @__PURE__ */ jsx("div", { className: [countBaseClasses, equalTabs(tab.id, active) ? countActiveClasses : countInactiveClasses].join(" "), children: tab.count }),
23372
- tab.id === active && /* @__PURE__ */ jsx("div", { className: activeMarkerClass })
23372
+ equalTabs(tab.id, active) && /* @__PURE__ */ jsx("div", { className: activeMarkerClass })
23373
23373
  ]
23374
23374
  },
23375
23375
  i