UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

16 lines (15 loc) 1.82 kB
export type { FocusChangeDetails as NumberInputFocusChangeDetails, ValueChangeDetails as NumberInputValueChangeDetails, ValueInvalidDetails as NumberInputValueInvalidDetails, } from '@zag-js/number-input'; export { NumberInputContext, type NumberInputContextProps } from './number-input-context'; export { NumberInputControl, type NumberInputControlBaseProps, type NumberInputControlProps, } from './number-input-control'; export { NumberInputDecrementTrigger, type NumberInputDecrementTriggerBaseProps, type NumberInputDecrementTriggerProps, } from './number-input-decrement-trigger'; export { NumberInputIncrementTrigger, type NumberInputIncrementTriggerBaseProps, type NumberInputIncrementTriggerProps, } from './number-input-increment-trigger'; export { NumberInputInput, type NumberInputInputBaseProps, type NumberInputInputProps } from './number-input-input'; export { NumberInputLabel, type NumberInputLabelBaseProps, type NumberInputLabelProps } from './number-input-label'; export { NumberInputRoot, type NumberInputRootBaseProps, type NumberInputRootProps } from './number-input-root'; export { NumberInputRootProvider, type NumberInputRootProviderBaseProps, type NumberInputRootProviderProps, } from './number-input-root-provider'; export { NumberInputScrubber, type NumberInputScrubberBaseProps, type NumberInputScrubberProps, } from './number-input-scrubber'; export { NumberInputValueText, type NumberInputValueTextBaseProps, type NumberInputValueTextProps, } from './number-input-value-text'; export { numberInputAnatomy } from './number-input.anatomy'; export { useNumberInput, type UseNumberInputProps, type UseNumberInputReturn } from './use-number-input'; export { useNumberInputContext, type UseNumberInputContext } from './use-number-input-context'; export * as NumberInput from './number-input';