@esperanca-ui/componentes 2.14.24 → 2.16.0

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.
@@ -1,5 +0,0 @@
1
- import { InputProps } from '../Input/Input';
2
-
3
- export interface DateTimeInputProps extends Omit<InputProps, 'type'> {
4
- }
5
- export declare const DateTimeInput: import('react').ForwardRefExoticComponent<DateTimeInputProps & import('react').RefAttributes<HTMLInputElement>>;
@@ -1,17 +0,0 @@
1
- import { PointerEventHandler, RefObject } from 'react';
2
-
3
- interface UseHorizontalDragScrollOptions {
4
- enabled?: boolean;
5
- threshold?: number;
6
- }
7
- interface DragScrollHandlers<T extends HTMLElement> {
8
- ref: RefObject<T>;
9
- isDragging: boolean;
10
- onPointerDown: PointerEventHandler<T>;
11
- onPointerMove: PointerEventHandler<T>;
12
- onPointerUp: PointerEventHandler<T>;
13
- onPointerCancel: PointerEventHandler<T>;
14
- onPointerLeave: PointerEventHandler<T>;
15
- }
16
- export declare function useHorizontalDragScroll<T extends HTMLElement = HTMLDivElement>({ enabled, threshold, }?: UseHorizontalDragScrollOptions): DragScrollHandlers<T>;
17
- export {};