UNPKG

@jay-js/ui

Version:

A library of UI components for Jay JS with Tailwind CSS and daisyUI.

4 lines (3 loc) 550 B
import { type TBaseTagMap } from "@jay-js/elements"; import type { TDateRangePicker } from "./date-range-picker.types.js"; export declare function DateRangePicker<T extends TBaseTagMap = "div">({ startLabel = "De", endLabel = "Até", startValue, endValue, onSelectRange, onStartChange, onEndChange, withTime = false, minDate, maxDate, color = "btn-primary", size = "btn-sm", disabled = false, locale = "pt-BR", showToday = true, layout = "horizontal", gap = "gap-4", validateRange = true, ...props }?: TDateRangePicker<T>): HTMLElementTagNameMap[T];