@windstream/react-shared-components 0.1.76 → 0.1.78

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.
@@ -97,8 +97,12 @@ type CalloutProps = {
97
97
  * When `true` (default) cards are laid out in a responsive Tailwind
98
98
  * grid sized by `maxCardsPerRow`. When `false` the cards stretch
99
99
  * full-width and stack vertically (no inner widths).
100
+ *
101
+ * Accepts a string for backward compatibility with legacy consumers
102
+ * that pass a Tailwind width class (e.g. "w-1/2"); any truthy value
103
+ * enables grid mode — the string itself is not applied.
100
104
  */
101
- cardsWidth?: boolean;
105
+ cardsWidth?: boolean | string;
102
106
  maxCardsPerRow?: number;
103
107
  noGutter?: boolean;
104
108
  items: CalloutItem[];