@kud/ink-ui 0.13.0 → 0.13.2

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -104,7 +104,7 @@ var SelectableRow = ({
104
104
  marker = "\u276F",
105
105
  children
106
106
  }) => /* @__PURE__ */ jsxs(Box, { children: [
107
- /* @__PURE__ */ jsx(Text, { color: colors.info, children: active ? ` ${marker} ` : " " }),
107
+ /* @__PURE__ */ jsx(Box, { flexShrink: 0, children: /* @__PURE__ */ jsx(Text, { color: colors.info, children: active ? ` ${marker} ` : " " }) }),
108
108
  isTextValue2(children) ? /* @__PURE__ */ jsx(Text, { bold: active, children }) : children
109
109
  ] });
110
110
  var windowStart = (cursor, total, count) => {
@@ -628,8 +628,9 @@ var UpdateBanner = ({
628
628
  rowGap: 1,
629
629
  children: [
630
630
  /* @__PURE__ */ jsxs(Box, { columnGap: 1, children: [
631
- /* @__PURE__ */ jsx(Text, { bold: true, color: colors.accent, children: "Update available" }),
632
- /* @__PURE__ */ jsx(Text, { dimColor: true, children: name })
631
+ /* @__PURE__ */ jsx(Text, { bold: true, color: colors.accent, children: name }),
632
+ /* @__PURE__ */ jsx(Text, { dimColor: true, children: "\xB7" }),
633
+ /* @__PURE__ */ jsx(Text, { dimColor: true, children: "update available" })
633
634
  ] }),
634
635
  /* @__PURE__ */ jsxs(Box, { columnGap: 1, children: [
635
636
  /* @__PURE__ */ jsx(Text, { dimColor: true, children: current2 }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kud/ink-ui",
3
- "version": "0.13.0",
3
+ "version": "0.13.2",
4
4
  "description": "React component library for Ink CLIs",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",