seemore 1.0.7 → 1.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "seemore",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Let AI write the Markdown. Let seemore show it better — zero config documentation framework.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -5,7 +5,7 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <!-- Default icon so a zero-config folder does not 404 on /favicon.ico. A favicon from
7
7
  the config is injected at the marker below, after this link, and the last one wins. -->
8
- <link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='32' y2='32' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%236D5EF5'/%3E%3Cstop offset='1' stop-color='%2317B8A6'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='32' height='32' rx='7' fill='url(%23g)'/%3E%3Cpath d='M10 11h12M10 16h12M10 21h7' stroke='%23f5f5f5' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E" />
8
+ <link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' rx='7' fill='%236D5EF5'/%3E%3Cpath d='M10 11h12M10 16h12M10 21h7' stroke='%23f5f5f5' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E" />
9
9
  <!--seemore-head-->
10
10
  </head>
11
11
  <body>
@@ -90,8 +90,14 @@
90
90
  @apply flex min-h-0 flex-1 flex-col;
91
91
  }
92
92
 
93
+ /* Item labels come from filenames/headings as a bare text node next to the icon — no wrapper
94
+ span we can target — so long unbroken identifiers (`Cartalyst_stripe_migration_plan`) need
95
+ to break, or they overflow the fixed-width rail. `break-words` (overflow-wrap) is not enough
96
+ here: per spec it's excluded from min-content sizing, so a flex item using it still refuses
97
+ to shrink below the full word width. `break-all` (word-break) does shrink the min-content
98
+ size, which is what lets this flex item wrap instead of overflowing. */
93
99
  .seemore-sidebar-link {
94
- @apply flex w-full items-center gap-2 rounded-lg px-3 py-1.5 text-sm text-fd-muted-foreground transition-colors;
100
+ @apply flex w-full items-center gap-2 rounded-lg px-3 py-1.5 text-sm break-all text-fd-muted-foreground transition-colors;
95
101
  }
96
102
 
97
103
  .seemore-sidebar-link:hover {