@kolkrabbi/kol-theme 0.87.0 → 0.87.1

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.
@@ -78,8 +78,14 @@
78
78
  * the trigger at its container keeps the fusion honest (the panel still matches
79
79
  * `rects.reference.width`, which is now the real one) and the label ellipsises.
80
80
  * A dropdown in a narrow chrome is where dropdowns live. */
81
- .kol-dd-root { max-width: 100%; }
82
- .kol-dd-trigger { max-width: 100%; }
81
+ /* `min-width: 0` beside the cap (kol-mirror's adoption, 2026-08-28): the case
82
+ * that broke was a trigger inside a `flex items-center justify-between` row, and
83
+ * a flex child's default `min-width: auto` floors it at its CONTENT — so the cap
84
+ * resolved against a box the ghost stack had already pushed wide, and the
85
+ * trigger still overflowed the shelf. The pair is the fix: the floor lets it
86
+ * shrink, the cap stops it growing. */
87
+ .kol-dd-root { max-width: 100%; min-width: 0; }
88
+ .kol-dd-trigger { max-width: 100%; min-width: 0; }
83
89
  .kol-dd-caret {
84
90
  flex-shrink: 0;
85
91
  transition: rotate var(--kol-transition-base);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-theme",
3
- "version": "0.87.0",
3
+ "version": "0.87.1",
4
4
  "description": "KOL (Kolkrabbi) design-system tokens + base CSS — brand-neutral. The canonical token/cascade layer every other KOL package and consumer builds on.",
5
5
  "license": "MIT",
6
6
  "type": "module",