@pablozaiden/terminatui 0.5.2 → 0.5.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pablozaiden/terminatui",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "description": "Terminal UI and Command Line Application Framework",
5
5
  "repository": {
6
6
  "url": "https://github.com/PabloZaiden/terminatui"
@@ -17,7 +17,7 @@ interface CommandSelectorProps {
17
17
  }
18
18
 
19
19
  export function CommandSelector({ commands, selectedIndex, onSelect, breadcrumb }: CommandSelectorProps) {
20
- const title = breadcrumb?.length ? `Select Command (${breadcrumb.join(" > ")})` : "Select Command";
20
+ const title = breadcrumb?.length ? `Select Command (${breadcrumb.join(" ")})` : "Select Command";
21
21
 
22
22
  return (
23
23
  <Box flexDirection="column" flexGrow={1} >
@@ -8,7 +8,7 @@ interface HeaderProps {
8
8
  }
9
9
 
10
10
  export function Header({ name, version, breadcrumb }: HeaderProps) {
11
- const breadcrumbStr = breadcrumb?.length ? ` 3 ${breadcrumb.join(" 3 ")}` : "";
11
+ const breadcrumbStr = breadcrumb?.length ? ` ${breadcrumb.join(" ")}` : "";
12
12
 
13
13
  return (
14
14
  <Box flexDirection="column" flexShrink={0}>
@@ -7,7 +7,7 @@ interface HeaderProps {
7
7
  }
8
8
 
9
9
  export function Header({ name, version, breadcrumb }: HeaderProps) {
10
- const breadcrumbStr = breadcrumb?.length ? ` 3 ${breadcrumb.join(" 3 ")}` : "";
10
+ const breadcrumbStr = breadcrumb?.length ? ` ${breadcrumb.join(" ")}` : "";
11
11
 
12
12
  return (
13
13
  <box flexDirection="column" flexShrink={0}>