mn-angular-lib 1.0.164 → 1.0.165

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.
@@ -13865,9 +13865,16 @@ const mnSegmentedVariants = tv({
13865
13865
  sm: { segment: 'px-2.5 py-1 text-sm' },
13866
13866
  md: { segment: 'px-3 py-1.5 text-base' },
13867
13867
  },
13868
- /** Stretch the track and share its width evenly between the segments. */
13868
+ /**
13869
+ * Stretch the track and share its width evenly between the segments.
13870
+ *
13871
+ * The segments grow from a zero basis but keep their automatic minimum, so a
13872
+ * justified control inside an auto-width parent still asks for the room its
13873
+ * labels need. Letting them shrink below their content (`min-w-0`) made the
13874
+ * parent resolve to a narrower box and truncated the labels instead.
13875
+ */
13869
13876
  justified: {
13870
- true: { root: 'flex w-full', segment: 'flex-1 min-w-0' },
13877
+ true: { root: 'flex w-full', segment: 'flex-1' },
13871
13878
  false: {},
13872
13879
  },
13873
13880
  /**