{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "wheel-picker", "type": "registry:component", "title": "Wheel Picker", "author": "ncdai ", "description": "iOS-like wheel picker for React with smooth inertia scrolling and infinite loop support.", "dependencies": [ "@ncdai/react-wheel-picker" ], "registryDependencies": [ "@ncdai/utils" ], "files": [ { "path": "src/registry/wheel-picker/wheel-picker.tsx", "content": "import \"@ncdai/react-wheel-picker/style.css\";\n\nimport * as WheelPickerPrimitive from \"@ncdai/react-wheel-picker\";\n\nimport { cn } from \"@/lib/utils\";\n\ntype WheelPickerValue = WheelPickerPrimitive.WheelPickerValue;\n\ntype WheelPickerOption =\n WheelPickerPrimitive.WheelPickerOption;\n\ntype WheelPickerClassNames = WheelPickerPrimitive.WheelPickerClassNames;\n\nfunction WheelPickerWrapper({\n className,\n ...props\n}: React.ComponentProps) {\n return (\n \n );\n}\n\nfunction WheelPicker({\n classNames,\n ...props\n}: WheelPickerPrimitive.WheelPickerProps) {\n return (\n \n );\n}\n\nexport { WheelPicker, WheelPickerWrapper };\nexport type { WheelPickerClassNames, WheelPickerOption };\n", "type": "registry:component" } ], "docs": "https://chanhdai.com/components/react-wheel-picker" }