@asadi/angular-date-components
Version:
`Angular Date Components` is a comprehensive angular library of date-related components designed to meet the needs of applications that require localization based on various calendar systems. While the package currently includes two powerful components (S
12 lines (11 loc) • 449 B
TypeScript
import { Observable } from "rxjs";
export declare class Interactions {
static readonly click: (element: HTMLElement, destroy: Observable<void>) => Observable<MouseEvent>;
static readonly tooltip: (element: HTMLElement, delay: number, destroy: Observable<void>, scrollableContainer?: HTMLElement | null) => Observable<{
state: 'show' | 'hide';
coordinates: {
x: number;
y: number;
};
}>;
}