UNPKG

rcx-virtual-list

Version:

Maximum performance for extremely large lists.<br/> Animation of elements is supported.

17 lines (16 loc) 458 B
/** * Snapping method. * @link https://github.com/DjonnyX/rcx-virtual-list/tree/main/src/lib/src/enums/snapping-method.ts * @author Evgenii Grebennikov * @email djonnyx@gmail.com */ export declare enum SnappingMethods { /** * Normal group rendering. */ NORMAL = "normal", /** * The group is rendered on a transparent background. List items below the group are not rendered. */ ADVANCED = "advanced" }