@konoma-development/react-components 0.3.6 → 0.3.8

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.
@@ -14459,7 +14459,7 @@ function Select({
14459
14459
  indicatorsContainer: () => disabled ? "hidden" : ""
14460
14460
  },
14461
14461
  isClearable,
14462
- placeholder,
14462
+ placeholder: placeholder || " ",
14463
14463
  isMulti,
14464
14464
  options: optionsInternal,
14465
14465
  closeMenuOnSelect: !isMulti,
@@ -22710,8 +22710,8 @@ function Table({
22710
22710
  column.grow ? "grow" : ""
22711
22711
  ].join(" "),
22712
22712
  children: [
22713
- /* @__PURE__ */ jsxs("div", { className: "flex flex-row items-center gap-2 w-full justify-between", children: [
22714
- /* @__PURE__ */ jsx("span", { children: column.title }),
22713
+ /* @__PURE__ */ jsxs("div", { className: "flex flex-row items-center gap-2 w-full justify-between truncate", children: [
22714
+ /* @__PURE__ */ jsx("span", { className: "truncate", title: typeof column.title === "string" ? column.title : void 0, children: column.title }),
22715
22715
  column.sortKey && /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
22716
22716
  Icon,
22717
22717
  {
@@ -22797,8 +22797,8 @@ function Table({
22797
22797
  );
22798
22798
  },
22799
22799
  children: [
22800
- /* @__PURE__ */ jsxs("div", { className: "flex flex-row items-center gap-2 w-full justify-between", children: [
22801
- /* @__PURE__ */ jsx("span", { children: column.title }),
22800
+ /* @__PURE__ */ jsxs("div", { className: "flex flex-row items-center gap-2 w-full justify-between truncate", children: [
22801
+ /* @__PURE__ */ jsx("span", { className: "truncate", title: typeof column.title === "string" ? column.title : void 0, children: column.title }),
22802
22802
  column.sortKey && /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
22803
22803
  Icon,
22804
22804
  {