hive-react-kit 1.6.3 → 1.6.5

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/dist/build.css CHANGED
@@ -1105,6 +1105,9 @@
1105
1105
  .max-w-7xl {
1106
1106
  max-width: var(--container-7xl);
1107
1107
  }
1108
+ .max-w-\[55\%\] {
1109
+ max-width: 55%;
1110
+ }
1108
1111
  .max-w-\[220px\] {
1109
1112
  max-width: 220px;
1110
1113
  }
@@ -8,6 +8,13 @@ interface ActivityListProps {
8
8
  className?: string;
9
9
  onClickPermlink?: (author: string, permlink: string) => void;
10
10
  onSelectActivity?: (activity: ActivityListItem) => void;
11
+ /** The actual scroll container this list lives inside. When provided,
12
+ * infinite scroll attaches to it directly instead of guessing the
13
+ * nearest scrollable ancestor — the guess is unreliable in nested
14
+ * layouts (e.g. embedded in UserDetailProfile) where an inner
15
+ * `overflow-y-auto` wrapper grows to content height and never
16
+ * actually scrolls. */
17
+ scrollRootRef?: React.RefObject<HTMLElement | null>;
11
18
  }
12
19
  declare const ActivityList: React.FC<ActivityListProps>;
13
20
  export default ActivityList;