{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "wheel-picker", "type": "registry:component", "title": "Wheel Picker", "author": "Rajdeep Singh ", "description": "iOS-like wheel picker for React with smooth inertia scrolling and infinite loop support.", "dependencies": [ "@rajdeep/react-wheel-picker" ], "registryDependencies": [ "@rajdeep/utils" ], "files": [ { "path": "src/registry/wheel-picker/wheel-picker.tsx", "content": "import \"@rajdeep/react-wheel-picker/style.css\";\n\nimport * as WheelPickerPrimitive from \"@rajdeep/react-wheel-picker\";\n\nimport { cn } from \"@/lib/utils\";\n\ntype WheelPickerOption = WheelPickerPrimitive.WheelPickerOption;\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}: React.ComponentProps) {\n return (\n \n );\n}\n\nexport { WheelPicker, WheelPickerWrapper };\nexport type { WheelPickerClassNames, WheelPickerOption };\n", "type": "registry:component" } ], "docs": "https://rajdeep-singh.vercel.app/components/react-wheel-picker" }