hive-react-kit 1.6.4 → 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 +3 -0
- package/dist/components/ActivityList.d.ts +7 -0
- package/dist/index.cjs.js +146 -146
- package/dist/index.esm.js +14223 -14035
- package/package.json +1 -1
package/dist/build.css
CHANGED
|
@@ -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;
|