UNPKG

@ark-ui/vue

Version:

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

16 lines (15 loc) 2 kB
export type { FocusChangeDetails as NumberInputFocusChangeDetails, ValueChangeDetails as NumberInputValueChangeDetails, ValueInvalidDetails as NumberInputValueInvalidDetails, } from '@zag-js/number-input'; export { default as NumberInputContext, type NumberInputContextProps } from './number-input-context.vue'; export { default as NumberInputControl, type NumberInputControlBaseProps, type NumberInputControlProps, } from './number-input-control.vue'; export { default as NumberInputDecrementTrigger, type NumberInputDecrementTriggerBaseProps, type NumberInputDecrementTriggerProps, } from './number-input-decrement-trigger.vue'; export { default as NumberInputIncrementTrigger, type NumberInputIncrementTriggerBaseProps, type NumberInputIncrementTriggerProps, } from './number-input-increment-trigger.vue'; export { default as NumberInputInput, type NumberInputInputBaseProps, type NumberInputInputProps, } from './number-input-input.vue'; export { default as NumberInputLabel, type NumberInputLabelBaseProps, type NumberInputLabelProps, } from './number-input-label.vue'; export { default as NumberInputRootProvider, type NumberInputRootProviderBaseProps, type NumberInputRootProviderProps, } from './number-input-root-provider.vue'; export { default as NumberInputRoot, type NumberInputRootBaseProps, type NumberInputRootEmits, type NumberInputRootProps, } from './number-input-root.vue'; export { default as NumberInputScrubber, type NumberInputScrubberBaseProps, type NumberInputScrubberProps, } from './number-input-scrubber.vue'; export { default as NumberInputValueText, type NumberInputValueTextBaseProps, type NumberInputValueTextProps, } from './number-input-value-text.vue'; 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';