UNPKG

@vonage/vivid-react

Version:

Vivid wrapped for easy React usage & IDE autocomplete support & typescript typings

39 lines (38 loc) 1.57 kB
import React, { ReactNode } from 'react'; /** VwcInlineTimePicker * For more info on this Vivid element please visit https://vivid.deno.dev/components/inline-time-picker * @param {string | undefined} value * @param {number} minutesStep * @param {number | undefined} secondsStep * @param {'12h' | '24h'} clock * @param {string | undefined} min * @param {string | undefined} max * @param {string} focusedPickerClass * @param {string} VIVID_VERSION - The current version of the Vivid library, which is useful for debugging. It can be accessed from any Vivid element via `<el>.constructor.VIVID_VERSION`. * @param {string} componentName - Core component name, without prefix * @param {boolean} specialHandling * @param {VividAriaBehaviour} _vividAriaBehaviour */ declare const VwcInlineTimePicker: { (props: { children?: ReactNode; slot?: string | undefined; id?: string | undefined; style?: React.CSSProperties | undefined; ref?: React.RefObject<HTMLDivElement> | ((instance: HTMLDivElement | null) => void) | null | undefined; value?: string | undefined; minutesStep?: number | undefined; secondsStep?: any; clock?: any; min?: string | undefined; max?: string | undefined; focusedPickerClass?: string | undefined; VIVID_VERSION?: string | undefined; componentName?: string | undefined; specialHandling?: boolean | undefined; _vividAriaBehaviour?: any; }): JSX.Element; displayName: string; }; export default VwcInlineTimePicker;